I have the following XML Code to present the user with UNDO & REDO QAT Options in my workbook
The commands and buttons do work - However I am only able to UNDO (or REDO) 1 level back - I was hoping to get several UNDOs if needed
Not sure how many are provided in standard Excel Ribbon but I know it is more than 1
Any help would be appreciated
<ribbon startfromscratch="true">
<qat>
<sharedcontrols>
<control idmso="Undo">
<control idmso="Redo">
</control></control></sharedcontrols>
</qat></ribbon>
The commands and buttons do work - However I am only able to UNDO (or REDO) 1 level back - I was hoping to get several UNDOs if needed
Not sure how many are provided in standard Excel Ribbon but I know it is more than 1
Any help would be appreciated
HTML:
<commands>
<command idMso="QuickAccessToolbarCustomization" enabled= "false" />
<command idMso="Application.OptionsDialog" enabled= "false" />
</commands>
<ribbon startFromScratch="true">
<qat>
<sharedControls>
<control idMso="Undo" />
<control idMso="Redo" />
</sharedControls>
</qat>
<ribbon startfromscratch="true">
<qat>
<sharedcontrols>
<control idmso="Undo">
<control idmso="Redo">
</control></control></sharedcontrols>
</qat></ribbon>
Last edited: