Excel VBA for selecting an entire column starting from a specific cell

calendar_today Asked Oct 31, 2012
thumb_up 7 upvotes
history Updated April 16, 2026

Question posted 2012 · +4 upvotes

How do I select the entire column after a specific cell?

For example, I would like to select the entire column after C24 so that includes C24, C25, ...

I have worked with the following snippet with no success:

ActiveSheet.Range("C24", ActiveSheet.Range("C24").End(xlDown)).Select

Could someone please correct my error?

Accepted answer +7 upvotes

You just need to wrap the two references within a Range:

Range(ActiveSheet.Range("C24"), ActiveSheet.Range("C24").End(xlDown)).Select

Top excel-vba Q&A (6)

+7 upvotes ranks this answer #101 out of 136 excel-vba solutions on this site .