copy down

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

Guest

I have a formula in cell Y8. I wan tot copy it down to the last row of the
table. The last row is the last filled cell in column B. I am using the
following and it doesn't work:

With ActiveCell ' CellY8
Range(.Offset(0, -19), .Offset(0, -10).End(xlDown)).Offset(0, 1).FillDown
End With


Any suggestions for a code?
Thanks
 
vlad

With ActiveCell
.Resize(.Parent.Range("B8").End(xlDown).Row - 8 + 1).FillDown
End With
 

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