I'm trying to record a macro that will select a range of cells where the first cell (A3) is consistent, but the last cell changes from sheet to sheet. I started by recording a macro with the ending cell already selected, but it doesn't work from sheet to sheet. Any help is appreciated.
Asked
Active
Viewed 261 times
0
-
Have a look at `Cells(Rows.Count, "A").End(xlUp)` – tigeravatar Sep 03 '13 at 21:57
1 Answers
0
This will select from A3 to the bottom of data in column A:
Sub cutaneous()
Range(Cells(3, 1), Cells(Rows.Count, 1).End(xlUp)).Select
End Sub

Gary's Student
- 95,722
- 10
- 59
- 99