0

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.

Community
  • 1
  • 1

1 Answers1

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