HELP PLEASE
Board Regular
- Joined
- Jan 8, 2005
- Messages
- 156
I need a code that will select a range of cells...from cell A2 to the last cell with data in column AZ.
Thanks a lot.
Thanks a lot.
Dim LR as Long
LR = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row
Range("A2:AZ"& LR).Select