Find, but not Replace

  • Thread starter Thread starter ExcelMan
  • Start date Start date
E

ExcelMan

I have an app where I attach the built-in Find/Replace dialog box to a
command button. Is there a way to disable the Replace Tab, or better yet,
remove it altogether?

Thanks.
 
hi,
no. not possible. you might be better off replacing the
build in find box with vb code

code for find
Cells.Find(What:=Inputbox"Find WHAAAAT,?!?!?",
After:=ActiveCell, Lookin:=xlFormulas,_
LookAt:=xlPart, SearchOrder:=xlByRows,
searchDirection:=xlnext,_
MatchCase:=False).Activate
 

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