Forum home » Delegate support and help forum » Microsoft Excel VBA Training and help » Last Row
Last Row
Resolved · Low Priority · Version 2003
Okechi has attended:
Excel VBA Intro Intermediate course
Excel VBA Advanced course
Last Row
What VBA code do you use to find the last non-zero cell in either a row or a column of a list
For upcoming training course dates see: Pricing & availability
RE: Last Row
try in your VBA code:
Range("A1").Select
Selection.End(xlDown).Select
Range("A1").Select
Selection.End(xlToRight).Select
Modify the cell references to match whatever yours requires.
regards
Phil
|
