View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default How to Increment columns

cells(1,20).Value = Array("Header1", "Header2", _
"Header3", "Header4", . . . , "Header30")

or

for i = 1 to 30
cells(1,i + 19).Value = "Header" & i
Next

--
Regards,
Tom Ogilvy

"Glen Mettler" wrote in message
...
I want to start at column 20 and incrment by 1 and insert
a heading for each column - all via a macro.

I can capture the column index but I can't seem to
increment to the next column.

Help

Glen