I have a workbook in use by a number of users. For various reasons, some have more tabs in the ribbon when they open up my workbook than others, and when the workbook is opened and a user presses Alt, the corresponding key press associated with my custom ribbon tab will not always be the same.
Can I, for example, edit my XLSM file's XML so that the key pressed in conjunction with Alt will always be the same? I would like a solution that will work in excel 2013 (although it would be a bonus if it also worked in 2010 and/or 2007)
I have not been very successful in my search for a solution BUT eventually found HALF an answer. Apparently you add keytip="Z" or whatever in the customUI xml.
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="false">
<tabs>
<tab id="MyCustomRibbonTab" label="TEAM" keytip="Z">
</tab>
</tabs>
</ribbon>
</customUI>
I was then able to find this (How to set keytip on a ribbon?) retrospectively once I knew the correct terminology.
Trouble is it doesn't appear to work in 2013.