View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Lonnie M. Lonnie M. is offline
external usenet poster
 
Posts: 184
Default How do I refer (in VBA Code) to a column by caption instead of index ?

Do you mean:
Columns("G").Select
OR:
Columns("G:G").Select

Instead of:
Columns(7).Select

Or something else?