View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jessica Jessica is offline
external usenet poster
 
Posts: 113
Default Selecting Columns by Title

I am writing a macro to select columns based on their title.

If I always wanted to select Column D, then I could use:
Columns("D:D").Select

But in my case, I want to select a column that is titled "RC". I tried to
replace "D:D" with "RC", but I get an error.

Thanks,
Jessica