Dim foundRange as Range
Dim searchString as String
...
searchString = "ATP"
Set foundRange = Columns("Q").Find(What:=searchString, LookIn:=xlValues, LookAt:=xlWhole)
if foundRange = Nothing then
Msgbox "Unable to find" & searchString
else
foundRange.Select
end if