I have a spreadsheet with 5000 rows of data from column A to column E. To add a new entry, I need to find the last used row. Which is faster of the two below:
i=1
do while Activesheet.Range("A1").offset(i,0)<>vbnullstring
i=i+1
loop
OR
i=Activesheet.Cells(ActiveSheet.Rows.Count, "A").End(xlUp).Row
Bookmarks