How do I select the value from a cell 25 columns to the left of my active cell? Same row.
Range("AF1").Select
Dim i As Integer
Dim j As Integer
For i = 26 To 2 Step -1
value = Range(rc[-i]).Value
Is my current train of thought. I want to run through every cell until I'm 2 away.