Help Finding the Final Row
goto a blank sheet.
enter data in A11, A12, A13
Now run you code:
? Rows(ActiveSheet.UsedRange.Rows.Count).Row
3
Doesn't quite give the correct answer.
You can't assume the usedrange always starts with the first row.
--
Regards,
Tom Ogilvy
"chris" wrote in message
...
try this:
Rows(ActiveSheet.UsedRange.Rows.Count).Row
|