I am trying to clear data from Column A:HF down to row 3000. Now, I must find the first empty cell in Column A:A, and make that row active. This much I have been able to do, but how can I then select that last empty row that I made active and also select down to row 3000, and clear all the data from A:HF?
Columns("A:A").Select
Range("A1048576").End(xlUp).Offset(1, 0).Select ' Find first empty cell in column A
Dan