gaj104
Well-known Member
- Joined
- Nov 9, 2002
- Messages
- 864
Hi,
Curious, is there any limitations of using this as my code to find the last used cell in a sheet?
i.e the last row would be
Thanks
Curious, is there any limitations of using this as my code to find the last used cell in a sheet?
Code:
Cells.Find("*", SearchDirection:=xlPrevious)
i.e the last row would be
Code:
Cells.Find("*", SearchDirection:=xlPrevious).Row
Thanks