xlDialogFormulaFind

Emily

Active Member
Joined
Aug 28, 2002
Messages
304
There are some argument lists in xlDialogFormulaFind:
text, in_num, at_num, by_num, dir_num, match_case, match_byte

Can anyone explain it?

Thanks
Emily
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
They just control the appearance of the dialog box when it first opens. From experimentation: -

text- appears in 'Find What' box
in_num 1 - Formulas, 2 - Values, 3 - Comments
at_num 1- Find entire cells only box is checked, 2- unchecked
by_num 1- By Rows, 2- By Columns
dir_num Not sure, presumably controls the Find direction, but I don't think there's an option on the dialog for it
match_case True Or False
match_byte True Or False

So, you could use something like this to set up the dialog box for the user: -

Application.Dialogs(xlDialogFormulaFind).Show "TextFind", 3, 2, 2, 0, False, False
 
Upvote 0

Forum statistics

Threads
1,221,529
Messages
6,160,348
Members
451,639
Latest member
Kramb

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