How do I select the cells, with contents, in column A?
For example,
I might have a list of names
John
Jack
James
and other times a longer list of times,
John
Jack
James
Jimmy
These will always be in cell A1-AX, X being the final row.
For the first example, I would use the code,
Range("A1:A3").Select
For the second,
Range("A1:A4").Select
I would like to use code that automates this regardless of how many in the list.