At different intervals in column A (rows 12 to 300) I have the days of the week. I'd like to move those days one column to the right. I wrote the following so that xl might identify only those cells in A12:A300 that contain a value and then offset them to B, but my use of Offset is somehow wrong:
Can anyone help me out here?
Code:
For i = 12 To 300
If Right(Cells(i, 1).Value, 3) = "day" Then
Range(Cells(i, 1)).Offset(0, 1) = Range(Cells(i, 1)).Value
End If
Next i
Can anyone help me out here?