Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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