The code below has the range defined and says pull down a2:a as far as column A on the sheet called data goes.
Range("a2:a" & Sheets("Data").Range("A" & Rows.Count).End(xlUp).Row).filldown
I have selected a column by the header contents not the position and then offset the selection by 1 so I have the 2nd cell of the relevant column selected.
I would like to pull this cell down as far as column A goes. This is all occurring on the same sheet
Range("a2:a" & Sheets("Data").Range("A" & Rows.Count).End(xlUp).Row).filldown
I have selected a column by the header contents not the position and then offset the selection by 1 so I have the 2nd cell of the relevant column selected.
I would like to pull this cell down as far as column A goes. This is all occurring on the same sheet