Code:
Dim c As Range
Dim i As Long
For Each c In Range("C1:Z1")
For i = 2 to 26
Select case i
Case 7, 12, 17, 22
c.Value = "=" & c.Offset(0, -1).Address & "+3"
Case Else
c.Value = "=" & c.Offset(0, -1).Address & "+1"
End Select
Next
Next
The above just applies case else to the whole range, rathe than "+3" for the cases I've tried to specify / do something different to. Any idea what I'm missing would be hugely appreciated.
Thank you
Last edited: