vickero007
IS-IT--Management
I have this Sub that I want to move the data two cells over to the left for 11 columns and 102 rows. I'm getting an error on the second Range "Argument not optional". What did I do wrong?
Private Sub Move()
Dim i As Integer
Dim j As Integer
With Worksheets("Sheet1"
.Range("I2"
For i = 0 To 102
For j = 0 To 11
Range.Offset(i, j).Value = (Range.Offset(0, 2).Value)
Next j
Next i
End Sub
-Volkoff007
Private Sub Move()
Dim i As Integer
Dim j As Integer
With Worksheets("Sheet1"


For i = 0 To 102
For j = 0 To 11
Range.Offset(i, j).Value = (Range.Offset(0, 2).Value)
Next j
Next i
End Sub
-Volkoff007