Find

  • Thread starter Thread starter Tim
  • Start date Start date
T

Tim

Can I find a cell address in another sheet in a book
without acvtivating the other sheet?

Thanks
 
Sure - you just need to qualify where you want to look - a simplified
example.

With worksheets("sheet9")
set rng = .cells.find(What:=Target)
End With
if not rng is nothing then
msgbox rng.Address(external:=True)
End if
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top