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?
You just need to wrap the two references within a
Range: