Hi all:
Is there an easy way to find the last row in Excel? I seem to remember reading it--it might have been in this forum, but I searched to no avail.
Anyway, I've always looped through to find the first empty cell, like this:
Any help will be greatly appreciated, as this takes forever with a large spreadsheet.
Thanks,
Ron Repp
If gray hair is a sign of wisdom, then I'm a genius.
Is there an easy way to find the last row in Excel? I seem to remember reading it--it might have been in this forum, but I searched to no avail.
Anyway, I've always looped through to find the first empty cell, like this:
Code:
Do
Activecell.Offset(1,0).Activate
If Activecell.Text = "" then Exit Do
Loop
Any help will be greatly appreciated, as this takes forever with a large spreadsheet.
Thanks,
Ron Repp
If gray hair is a sign of wisdom, then I'm a genius.