I_AM
Board Regular
- Joined
- Jul 2, 2002
- Messages
- 141
Hi,
I am using the following code to find the first empty cell in column 1 so as to paste more info onto page. It works ok but with a number of thousands of entries it takes an age to complete.
Range("A1").Select
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
I have tried to use in conjunction with “.SpecialCells(xlCellTypeLastCell).Select”, however I can’t get this to work on a single column only.
Is there a faster way of finding and selecting the first empty cell?
Thanks Regards Ron
I am using the following code to find the first empty cell in column 1 so as to paste more info onto page. It works ok but with a number of thousands of entries it takes an age to complete.
Range("A1").Select
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
I have tried to use in conjunction with “.SpecialCells(xlCellTypeLastCell).Select”, however I can’t get this to work on a single column only.
Is there a faster way of finding and selecting the first empty cell?
Thanks Regards Ron