Hallo,
With the code below I want to find a certain date in column A cell values. And then resize it to copy the new range to another place. Cells in column A are linked to another sheet. What is wrong here?
With the code below I want to find a certain date in column A cell values. And then resize it to copy the new range to another place. Cells in column A are linked to another sheet. What is wrong here?
Code:
Sub example()
Dim rgFound As Range
Dim search As String
Set rgFound = Range("A1:A100").Find("09.06.18 1:00", LookIn:=xlValues)
rgFound.Resize(24, 16).Copy Destination:=Range("A1") <<===Error "91"
End Sub
Last edited: