Pretty simple problem that is frustrating me. I have this filtered column in my worksheet where Type is the header name:
AO
1 Type
55 blank
62 blank
63 blank
65 blank
I'm trying to fill everything past Type in this filtered column with the text 'A'
My attempt so far:
LastRow = Range("AO" & Rows.Count).End(xlUp).Row
Range("AO:AO" & LastRow).Offset(1).Formula = "A"
But I can't seem to get this variation to work. Any help is appreciated