I an trying to reformat my spreadsheet. I want to write a for next loop based on letters instead of numbers is this possible? I get a compile error on my current loop.
Code:
Dim C1 As String
For C1 = "A" To "R"
Columns("C1").Select
With Selection
.Columns.AutoFit
.VerticalAlignment = xlCenter
.HorizontalAlignment = xlRight
End With
Next C1