Hi
Just wondering if it is possible to have multiple criteria for .Find in VBA, tried using union to overcome this but to no avail!
Cheer
Such as? The answer is likely to be no.
Set Found = Columns("AA:AZ").Find(what:="SH", LookIn:=xlValues, lookat:=xlWhole)
You could make a list and perform a find for each item in turn, with perhaps a range (using union to add new results) that records the cells of all the 'hits'.
Kinda depends on what you want to do with the results.