VBA Code:
Set findValue = imageB.Range("X:X").Find(what:=myarray(j, 1), _
LookIn:=xlValues, lookat:=xlWhole)
'Using to match values to original launched data
Set searchValue = dashB.Range("X:X").Find(what:=myarray(j, 1), _
LookIn:=xlValues, lookat:=xlWhole)
'if the order is new addition
If searchValue = "" Then
the line:
If searchValue = "" Then
returns the 91 error.
How can I make it so that my If portion does its thing if the searchValue variable returns nothing (i.e doesn't exist in the search range of the find function)?
I have tried making the if searchvalue = Nothing then, but it didn't like that either.