Need VBA equivalent for =FORMULA.GOTO?()

jassy

New Member
Joined
Mar 25, 2002
Messages
3
I'm new to VBA, trying to learn more by converting old macro.

The function "=FORMULA.GOTO?()" in Excel XLM is same as the "Go To" command in Excel. It will open a dialog box with all range names created in the workbook. The user can scroll the up-down bar to select **ANY** range name to goto without typing the reference.

The VBA command (Application.Goto Reference:=) only goto the specified range.
What will be the equivalent function/command in VBA to give you the choice to goto without typing?

Thanks to your help.
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Application.Goto Range("Whatever")
If you include ", True" at the end, it will bring the active cell to the upper left corner:
Application.Goto Range("Whatever"), True
 
Upvote 0
Bob,

Thanks to your reply. The Application.Goto Range("Whatever") only goto the range name "Whatever" specified in this command line.

I'm looking for a way to list all range names for user to select and goto. Please help again.
 
Upvote 0

Forum statistics

Threads
1,214,544
Messages
6,120,126
Members
448,947
Latest member
test111

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