In Excel I've searched and searched and cannot find this command, nor can I
find any other way to set up a keyboard shortcut for it. I even tried to
achieve this goal by setting up a macro involving the formatting palette
button on the toolbar, but this doesn't seem to work either.
Anyone have any thoughts on this???
Thanks in advance, --Brian Abbott
The View/Formatting Palette didn't make it into the exposed commands in
XLv.X (probably since it's a MacXL-only feature).
However you can certainly accomplish a toggle. Put this macro in your
Personal Macro Workbook and assign it to a keyboard shortcut or a
toolbar button:
Public Sub ToggleFormattingPalette()
With Application.CommandBars("Formatting Palette")
.Visible = Not .Visible
End With
End Sub
Thanks! That worked perfectly. --Brian