I am trying to do a simple find method. I know "170" exists at Z2. My error reads
Run-time error '91':
Object variable or With block variable not set
Dim cutRef as Range
Worksheets("Sun").Activate
With Rows(2)
Set cutRef = .Find("170")
End With
MsgBox cutRef.Address
I have no clue what i am doing wrong. Thanks for your help.