Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a way to add a custom tab in the Excel ribbon which would carry a few buttons. I chanced on some resources addressing it via Google but all look dodgy and outrageously complicated.

What is a quick and simple way to do that ? I'd like the new tab to get loaded when my VBA gets loaded into Excel..

UPDATE : I tried this example from here but get an "object required" error on the last instruction :

Public Sub AddHighlightRibbon()
Dim ribbonXml As String

ribbonXml = "<mso:customUI xmlns:mso=""http://schemas.microsoft.com/office/2009/07/customui"">"
ribbonXml = ribbonXml + "  <mso:ribbon>"
ribbonXml = ribbonXml + "    <mso:qat/>"
ribbonXml = ribbonXml + "    <mso:tabs>"
ribbonXml = ribbonXml + "      <mso:tab id=""highlightTab"" label=""Highlight"" insertBeforeQ=""mso:TabFormat"">"
ribbonXml = ribbonXml + "        <mso:group id=""testGroup"" label=""Test"" autoScale=""true"">"
ribbonXml = ribbonXml + "          <mso:button id=""highlightManualTasks"" label=""Toggle Manual Task Color"" "
ribbonXml = ribbonXml + "imageMso=""DiagramTargetInsertClassic"" onAction=""ToggleManualTasksColor""/>"
ribbonXml = ribbonXml + "        </mso:group>"
ribbonXml = ribbonXml + "      </mso:tab>"
ribbonXml = ribbonXml + "    </mso:tabs>"
ribbonXml = ribbonXml + "  </mso:ribbon>"
ribbonXml = ribbonXml + "</mso:customUI>"

ActiveProject.SetCustomUI (ribbonXml)
End Sub
share|improve this question
Please confirm which Excel version you are using? – Siddharth Rout Jan 13 '12 at 14:41
I am using 2007 – Franklin Jan 13 '12 at 14:56

1 Answer

up vote 32 down vote accepted

Ok I hate to tell you this but AFAIK you cannot use VBA Excel to create custom tab in the Excel ribbon. You can however hide/make visible a ribbon component using VBA.

The link that you mentioned above is for MS Project and not MS Excel.

I create tabs for my Excel Applications/Add-Ins using this free utility called Custom UI Editor

You can download it from

http://openxmldeveloper.org/blog/b/openxmldeveloper/archive/2009/08/07/7293.aspx

Do let me know if you want to know how to create custom Tabs using Custom UI Editor and I would be more than glad to help you :)

HTH

Sid


Edit: To accommodate new request by OP

Hi jerome G, It's already late here so I was off to have my dinner :D Anyways, here is a short tutorial as promised.

1) After you have installed the Custom UI Editor (CUIE), open it and then click on File | Open and select the relevant Excel File. Please ensure that the Excel File is closed before you open it via CUIE. I am using a brand new worksheet as an example.

enter image description here

2) Right click as shown in the image below and click on "Office 2007 Custom UI Part". It will insert the "customUI.xml"

enter image description here

3) Next Click on menu Insert | Sample XML | Custom Tab. You will notice that the basic code is automatically generated. Now you are all set to edit it as per your requirements.

enter image description here

4) Let's inspect the code

enter image description here

label="Custom Tab"

Replace "Custom Tab" with the name which you want to give your tab. For the time being let's call it "Jerome"

The below part adds a custom button.

<button id="customButton" label="Custom Button" imageMso="HappyFace" size="large" onAction="Callback" />

imageMso is the image that will display on the button. "HappyFace" is what you will see at the moment. To get more image ID's. you can download it from

http://www.microsoft.com/downloads/details.aspx?familyid=12B99325-93E8-4ED4-8385-74D0F7661318&displaylang=en

onAction="Callback"

"Callback" is the name of the procedure which runs when you click on the button.

So let's create 2 buttons and call them "JG Button 1" and "JG Button 2". Let's keep happy face as the image of the first one and let's keep the "Sun" for the second.

So the amended code now looks like this

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="false">
<tabs>
<tab id="MyCustomTab" label="Jerome" insertAfterMso="TabView">
<group id="customGroup1" label="First Tab">
<button id="customButton1" label="JG Button 1" imageMso="HappyFace" size="large" onAction="Callback1" />
<button id="customButton2" label="JG Button 2" imageMso="PictureBrightnessGallery" size="large" onAction="Callback2" />
</group>
</tab>
</tabs>
</ribbon>
</customUI>

Delete all the code which was generated in CUIE and then paste the above code in lieu of that. Save and close CUIE.

Now when you open the Excel File it will look like this

enter image description here

Now the Code part

Open VBA Editor Insert a module and paste this code

Public Sub Callback1(control As IRibbonControl)

    MsgBox "You pressed Happy Face"

End Sub

Public Sub Callback2(control As IRibbonControl)

    MsgBox "You pressed the Sun"

End Sub

Save the Excel file as a macro enabled file. Now when you click on the Smiley or the Sun you will see the relevant message box

enter image description here

Hope this helps :) Feel free to ask what you don't understand.

Sid

share|improve this answer
just downloaded the thing. Do you recommend any example page ? – Franklin Jan 13 '12 at 15:27
2  
Yes :) Ron has plenty of examples in his website. rondebruin.nl/ribbon.htm – Siddharth Rout Jan 13 '12 at 15:29
1  
Do you want to create a new Tab? If yes then provide more details and I will give you the XML Code :) – Siddharth Rout Jan 13 '12 at 15:41
1  
Gimme 20 mins. Updating the above post with relevant code and snapshots :) – Siddharth Rout Jan 13 '12 at 15:57
2  
Done ;) Please refresh the page. – Siddharth Rout Jan 13 '12 at 17:17
show 7 more comments

protected by Community Jan 25 at 22:16

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.