View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Martin Martin is offline
external usenet poster
 
Posts: 336
Default Increase Column Heading Part 2

The second argument of Cells should just be columnNum surely (don't know
where the _.Value came from)?

"Adam" wrote:

Starting with the 4th column, I want every third column in the forth row to
say Substation and then the number. I have set a variable that is the max
substation number. I can't get this to output anything. Thanks for the help.

For a = 1 To MaxSubNumber

columnNum = 4 + (a - 1) * 3
Cells(4, columnnum_.Value) = "Substation " & a

Next a