Silly question: how do I go to the cell right after the last non-blank cell in column ? I can't figure it out for the life of me.
I've tried something akin to: Range("A2", Range("A2").End(xlDown) + 1).Activate (A1 is blank) and Range("A2", Range("A2").End(xlDown + 1)).Activate , but it errors out.
Thanks in advance!