0
votes

I've "inhereited" an Excel Add-In which contains an Office 2000 custom Toolbar. Excel 365 places this on the "Add-Ins" Ribbon Tab,

I'd like to update the add-in so that the commands sit on a dedicated Ribbon Tab

While I can add a customUI to the template which creates the buttons that I need, what I can't seem to do is get at the button definitions in the custom Toolbar and find out what is actually being called when the buttons are clicked. (I have access to all the unberlying VBA - I'm just not sure how the toolbar was created)

Am I out of luck?

1

1 Answers

0
votes

Toolbars were deprecated. You need to use a ribbon XML for creating a custom UI in Office applications. Read more about the Fluent UI (aka Ribbon UI) customizations in the following articles:

See How to add a custom Ribbon tab using VBA? for the sample code.