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 found as range, sFind as string
sFind = "key word"
set found = activesheet.cells.find(sfind)
if not found is nothing then
with found
lRowFound = .row
iColFounc = .column
end with
else
msgbox sfind & " not found"
end if