Question
October 26, 2010 at 12:29 PM
nulubez

Copying a range of cells with data

by nulubez . Updated 15 years, 10 months ago

I need to copy a range of cells and paste the data into another sheet and run this within my macro. The trick is I need to copy to the last row that has data – and the real kick is (if possible) ignore if a cell is empty but instead go until a row is found empty!

This is what I am using now – but it stops once it finds an empty cell (obviously)

With Sheets(fullData)
Range(“J6”, Range(“N6”).End(xlDown)).Copy
End With

Thank you for the help!

This discussion is locked

All Comments