Hi,
I have the code below that finds a cell, offsets and copies the range 100 cells below, how do I change the offset to get it to also select the column to the right so it's copying 100 rows down and 2 columns?
Many thanks.
I have the code below that finds a cell, offsets and copies the range 100 cells below, how do I change the offset to get it to also select the column to the right so it's copying 100 rows down and 2 columns?
Many thanks.
VBA Code:
Dim rFound As Range
Set rFound = Sheet6.Rows(210).Find(What:=Sheet1.Range("E2").Value, LookIn:=xlValues, LookAt:=xlWhole, MatchCase:=False)
If Not rFound Is Nothing Then
rFound.Offset(2, 0).Resize(100).Copy
End If