the .find method is working well (code below), but when i add a fitler to the search range (below, column aa), i seem to get "funky" results (works 90% plus of the time and then i'll get a wrong return, or i have to search a second time to get the correct results...).
-i've wondered if sometimes the previous search doesn't get cleared?-i'm still testing...
???
Code
'...
For Each c In Worksheets("PT").Range("d8:D" & LastRowPC).Cells 'brand
' strSearch = c.Value & c.Offset(0, 1).Value
strSearch = usfP.cmbMU & usfP.cmdState & c.Value & c.Offset(0, 1).Value
Set aCell = oshtsp.Range("aa1:aa" & LastRowsp).Find(What:=strSearch, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False, After:=oshtsp.Range("aa" & LastRowsp))
'...
thank you.