Not as such, but you can use this sequence:
Ctrl+1 A Alt+M Enter
This is a discussion on Is there a keyboard shortcut for merge cells? within the Excel Questions forums, part of the Question Forums category; I've looked through help and done a bit of a web search and can't find out if there is a ...
I've looked through help and done a bit of a web search and can't find out if there is a keyboard shortcut for merging cells in excel?
A little help, anyone? Thanks!
Not as such, but you can use this sequence:
Ctrl+1 A Alt+M Enter
You could try settin up the merge function as a macro and then assign your own key shortcut.
Or if you need to do this multiple times at once, then do one merge, and then use F4 to repeat your last action.
Execute the "TurnOnMyMerge" macro, and that will make Control Shift M the shortcut for merge.Code:Sub MyMerge() On Error Resume Next Selection.Merge End Sub Sub TurnOnMyMerge() Application.MacroOptions "MyMerge", ShortcutKey:="M" End Sub Sub TurnOffMyMerge() Application.MacroOptions "MyMerge", ShortcutKey:="" End Sub
I was doing that key sequence, Andrew.. it just seemed like too much to go through. You and I think alike.
Thanks for the macro idea, Byrne, and thanks for the macro Juan!
I don't know why I didn't think of F4 before, Tommygun!
Thanks for all your help, people!
Maybe you can help me with my next problem... see next thread.![]()
f4 works a treat. Thank you forum for saving me time!
Great tips -- especially F4 -- thanks!
But there is a built-in excel keyboard shortcut for merge cells: Alt-Enter
Merged cells should be avoided, if possible, because they lead to all kinds of problems for data processing.
Use "Center Across Selection" instead
Bookmarks