Hello,

I am trying to display the home tab in the XLM code.

Here's my XLM code:

PHP Code: 
<customUI onLoad="RibbonX.RibbonOnLoad" xmlns="http://schemas.microsoft.com/office/2006/01/customui">

    <
ribbon startFromScratch="true">         

        <
officeMenu>            
            <
button idMso="FileSaveAs" visible="true" />
        </
officeMenu>
        
        <
tabs>
            <
tab id="customTab" label="CONTROLS" insertAfterMso="TabHome">
                <
group id="customGroup4" label="Export options">
                    <
button id="customButton8" label="Export" size="large" onAction="Sheet1.ExportLogic" imageMso="DefinePrintStyles" />
                </
group>
            </
tab>

            <
tab idMso="TabDeveloper" getVisible="RibbonX.GetVisible"  />  
            <
tab idMso="TabHome" getVisible="true"  />                                <!-- line causing error!!!!! -->
        </
tabs>
    </
ribbon>
</
customUI

The following line in the above code causses the "400" error:

<tab idMso="TabHome" getVisible="true" />


Can someone help me to get rid of this error.

Thanking all in advance!
rn