Need to fill column G with data, based on length of column B

Henner

Board Regular
Joined
May 16, 2002
Messages
174
Hi,

I receive a 40,000+ row spreadsheet every morning in which the number of rows of data it has can vary from day to day.

I need a way to fill column G (which is always blank) with the number 38, from cell G2 down to the last cell in column G that is on the same row as the last cell of data in column B.

How do I do this please in a macro, when the number of data cells in column B varies from day to day?

Thanks
Paul
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Hello Paul,

This should do it:

<pre>
Sub stuff38()

Dim LastRow As Long
LastRow = Worksheets("Sheet1").Range("B65536").End(xlUp).Row
Range("G2:G" & LastRow).Value = "38"

End Sub

</pre>
 
Upvote 0
Hello again Jim,

Excellent! Many thanks for your rapid help yet again.

Best regards,
Paul
 
Upvote 0

Forum statistics

Threads
1,224,883
Messages
6,181,550
Members
453,052
Latest member
ezzat

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top