I have the following code but need to edit the set range to do,: L, M, N, O, P, Q, R & S. What is the proper format to put that in the~
set rng=Range(?
Dim I As Long
Dim rng As Range
For I = 1 To 22000
Set rng = Range("G" & I)
If rng.Value = True Then
rng.Offset(0, 1).Resize(1, 2).Copy
rng.Offset(0, -3).PasteSpecial Paste:=xlValues
End If
Next I
set rng=Range(?
Dim I As Long
Dim rng As Range
For I = 1 To 22000
Set rng = Range("G" & I)
If rng.Value = True Then
rng.Offset(0, 1).Resize(1, 2).Copy
rng.Offset(0, -3).PasteSpecial Paste:=xlValues
End If
Next I