Suggested Short Cut Key combinations to use w Custom ToolBar

sbendbuckeye

Active Member
Joined
Nov 26, 2003
Messages
440
Hello all,

Does anyone have any suggestions re: hotkeys for a custom toolbar? I'm thinking I should stay away from Ctrl+anything because I don't want to accientally shadow a Microsoft shortcut. I was thinking about using Ctrl+Shift+whatever but wondered if anyone out there has a strong preference for some other combination.

Thanks in advance for any ideas and/or suggestions!
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Hi,

Tools
Macro
Record New Macro

(For this example, you can choise whatever you want)
Shortcut key: Ctrl+Shift+M
Ok.

Then do something on sheet...

Stop Recording.

ALT+F11

In my example:

Code:
Sub Macro1()
'
' Macro2 Macro
' Macro recorded 20/10/2006 by Erdinç E. Karaçam
'
' Keyboard Shortcut: Ctrl+Shift+M
    Range("B1").Select
End Sub

Change the Macro1:

Code:
Sub Macro1()
'
' Macro4 Macro
' Macro recorded 20/10/2006 by Erdinç E. Karaçam
'
' Keyboard Shortcut: Ctrl+Shift+M
'
    On Error GoTo Show
    Application.CommandBars.Add(Name:="MyToolBar2").Visible = True
Show:
    Application.CommandBars("MyToolBar2").Visible = True
End Sub

Then return to Excel and press the Ctrl+Shift+M key combination.

Take it easy.
 
Upvote 0

Forum statistics

Threads
1,214,924
Messages
6,122,293
Members
449,077
Latest member
Rkmenon

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