Incrementing rows in VB is of cause easy as they are numbered but how can I increment columns as they are alphabetical?
Even if I change to R1C1 reference style, how can I relate to the columns and increment them?
Example
For n = 1 To 10
Sheets("Sheet1").Range("A" & n) = "Test"
Next n
This would put the word "Test" in cells "A1" to "A10"
Supposing I wanted to put the word "Test" in cells "A1" to "K1"
How would my program be written then?
Bookmarks