Hi Folks

Trying to customize the Ribbon on a single file via XML. So I'm using the Custom UI Editor for Microsoft Office to add a "customUI14.xml"

Therefore, it seems that I need to replicate the built-in ribbon tabs (eg. Home, Insert, Developer,...), which works almost as expected.

Only I'm struggling with the "Insert" tab, which now doesn't show the insert symbols group, although it's included in the XML code like so:

<?xml version="1.0" encoding="utf-8"?>
<customUI onLoad="RibbonOnLoad" xmlns="http://schemas.microsoft.com/office/2009/07/customui">


<!-- Set startFromScratch to true to hide the Ribbon and QAT (Quick Access Toolbar)-->
<ribbon startFromScratch="true">


<!-- Create a custom tab for every original tab on the Ribbon with the same name. -->
<!-- Add every origenal group to this custom tabs to duplicate the original tabs. -->
<!-- We can now use getVisible to hide/display the tabs with a VBA macro. -->
<!-- Note: Normal getVisible is not working for specific built-in tabs/groups/controls. -->


<tabs>
<!--Custom Einfügen Tab-->
<tab id="MyCustomInsertTab" label="Einfügen" insertAfterMso="TabInsert" getVisible="GetVisible" tag="ribinsert">
<group idMso="GroupInsertTablesExcel" />
<group idMso="GroupInsertIllustrations" />
<group idMso="GroupOfficeExtension" />
<group idMso="GroupInsertChartsExcel" />
<group idMso="GroupSparklinesInsert" />
<group idMso="GroupSlicerInsert" />
<group idMso="GroupInsertLinks" />
<group idMso="GroupInsertText" />
<group idMso="GroupInsertSympbols" />
</tab>
</tabs>


</ribbon>
</customUI>

I'm working on either office 2013 or 2016, if that's relevant.

Any ideas?