View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default Selecting an entire column

One way:

ActiveCell.EntireColumn.Select

In article ,
Marco wrote:

I'm trying to write a code that selects the entire column, regardless of what
cell I'm in. I run a find and sometimes end up in column O or it could be AA
or X. I want to be able to select that particular column.

I know that Range(A:A).Select will select column A. Column(2).Select will
select column B.

Thanks in advance for your help.

Marco