Copy formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I saw a post on how to do this and now I can't find it.... I need a formula
to copy down until there is a blank entry on the adjacent column.. I think
someone called a "copy down" macro... or something..
Thanks
 
Pick a column that has data all the way down to ascertain the last row(Lrow)

I used F

Sub Auto_Fill()
Dim Lrow As Long
With ActiveSheet
Lrow = Range("F" & Rows.Count).End(xlUp).Row
Range("G1:G" & Lrow).FillDown
End With
End Sub

You do know that a siimple double-click on the fill handle of G1 would copy down
to bottom of F?


Gord Dibben MS Excel MVP
 
Hi Gord, Just the answer I was looking for, it works excellent for me I hope
it helped Ien as well.
Eduardo
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top