Ctrl+F

Clueless401

New Member
Joined
Aug 18, 2020
Messages
42
Office Version
  1. 2016
Platform
  1. Windows
Hello Everyone,

You all are amazing! i want to thank anyone and everyone for the help on learning Excel. I am quickly becoming a big fan of this.

Is it possible to create a Ctrl+F search bar on my work sheet. I am trying to locate key items fast if possible.

Thank you :)
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
If by "Ctrl+F search bar" you mean a button, you can assign this to that button:
Sub CtrlF()
Application.Dialogs(xlDialogFormulaFind).Show
End Sub

But I don't see that being any faster than Ctrl+f. Can you further describe what you mean by Ctrl+F search bar?
 
Upvote 0
If by "Ctrl+F search bar" you mean a button, you can assign this to that button:
Sub CtrlF()
Application.Dialogs(xlDialogFormulaFind).Show
End Sub

But I don't see that being any faster than Ctrl+f. Can you further describe what you mean by Ctrl+F search bar?
Yes a button. pretty much need to make it user friendly so anyone can search for an item in stock, same way that you would use a search feature on any website. does this make sense?
 
Upvote 0
then, like I said, assign the button to this procedure:

Sub CtrlF()
Application.Dialogs(xlDialogFormulaFind).Show
End Sub
 
Upvote 0
then, like I said, assign the button to this procedure:

Sub CtrlF()
Application.Dialogs(xlDialogFormulaFind).Show
End Sub
:( i really dont know how to do that yet. Im very new to excel, when i say new i mean behind very behind
 
Upvote 0
Upvote 0

Forum statistics

Threads
1,215,008
Messages
6,122,672
Members
449,091
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top