find last row in a sheet
On Nov 7, 11:13 am, Janis wrote:
EndRow = Cells(Rows.Count, 1).End(xlUp)
I need the last used row count. This statement seems to count the last row
but not the used range. How do I find the last used row?
thanks,
EndRow = Cells(65536,1).End(xlup).row
hth
Carlo
|