My CustomUI is below if anyone can help.
Code:
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon>
<tabs>
<tab id="Reporttemplate" label="Report" insertBeforeMso="TabInsert">
<group id="Headings" label="Headings">
<button id="H1" screentip="Apply Heading 1 (Alt+1)" supertip="Applies the Heading 1 style which with automatically put a page break in before the heading." label="Heading 1" size="normal" onAction="H1" />
<button id="H2" screentip="Apply Heading 2 (Alt+2)" supertip="Applies the Heading 2 style." label="Heading 2" size="normal" onAction="H2" />
<button id="H3" screentip="Apply Heading 3 (Alt+3)" supertip="Applies the Heading 3 style." label="Heading 3" size="normal" onAction="H3" />
<button id="H4" screentip="Apply Heading 4 (Alt+4)" supertip="Applies the Heading 4 style." label="Heading 4" size="normal" onAction="H4" />
<button id="H5" screentip="Apply Heading 5 (Alt+5)" supertip="Applies the Heading 5 style. Heading 5 does not have numbering." label="Heading 5" size="normal" onAction="H5" />
</group>
<group id="Tables" label="Tables">
<button id="T1" screentip="1 column table (T1+'F3')" supertip="Inserts a formatted 1 column table." label="T1" size="normal" onAction="T1" />
<button id="T2" screentip="2 column table (T2+'F3')" supertip="Inserts a formatted 2 column table." label="T2" size="normal" onAction="T2" />
<button id="T3" screentip="3 column table (T3+'F3')" supertip="Inserts a formatted 3 column table." label="T3" size="normal" onAction="T3" />
<button id="T4" screentip="4 column table (T4+'F3')" supertip="Inserts a formatted 4 column table." label="T4" size="normal" onAction="T4" />
<button id="T5" screentip="5 column table (T5+'F3')" supertip="Inserts a formatted 5 column table." label="T5" size="normal" onAction="T5" />
<button id="T6" screentip="6 column table (T6+'F3')" supertip="Inserts a formatted 6 column table." label="T6" size="normal" onAction="T6" />
<button id="T7" screentip="7 column table (T7+'F3')" supertip="Inserts a formatted 7 column table." label="T7" size="normal" onAction="T7" />
<button id="T8" screentip="8 column table (T8+'F3')" supertip="Inserts a formatted 8 column table." label="T8" size="normal" onAction="T8" />
<button id="T9" screentip="9 column table (T9+'F3')" supertip="Inserts a formatted 9 column table." label="T9" size="normal" onAction="T9" />
<button id="T10" screentip="10 column table (T10+'F3')" supertip="Inserts a formatted 10 column table." label="T10" size="normal" onAction="T10" />
</group>
<group id="Misc" label="Misc">
<button id="insertlandscapepg" supertip="Inserts a landscape page with page breaks before and after and formatted header and footer." label="Insert Landscape Page" size="normal" onAction="Insert_Landscape_Page" />
<button id="insertheader" screentip="Insert Header" supertip="Inserts the report header. Your cursor must be active in the header before clicking." label="Insert Header (you must be in your header)" size="normal" onAction="Insert_Header" />
<button id="insertfooter" screentip="Insert Footer" supertip="Inserts the report footer. Your cursor must be active in the footer before clicking." label="Insert Footer (you must be in your footer)" size="normal" onAction="Insert_Footer" /> </group>
<group id="Appendix" label="Appendix">
<button id="inserttitlepg" supertip="Inserts an Appendix title page, only following an existing title page." label="Insert Appendix Title Page" size="normal" onAction="Insert_Appendix_Title_Page" />
<button id="inserttextbetween" supertip="Inserts a page ready for text between Appendix title pages. Your cursor must be active on the end of the title page before the location you require the text page inserted. The footer page reference will need adjusting depending on the appendix lettering." label="Insert Appendix Text (between Title Pages)" size="normal" onAction="Insert_Appendix_Text_Between" />
<button id="inserttextend" supertip="Inserts a page ready for text after the final Appendix title page. Your cursor must be active on the end of the title page before the location you require the text page inserted. The footer page reference will need adjusting depending on the appendix lettering." label="Insert Appendix Text (after the final Title Page)" size="normal" onAction="Insert_Appendix_Text_End" />
</group>
<group id="Plates" label="Plates">
<button id="insertplatereport" screentip="Insert single plate location (P1+'F3')" supertip="Inserts a single plate location, within the body of the report text, ready for insertion of a plate. Plate will be autoadjusted to fit table." label="Insert single plate location (report)" size="normal" onAction="P1" />
<button id="insertplate" screentip="Insert single plate location (AP1+'F3')" supertip="Inserts a single plate location ready for insertion of a plate. Plate will be autoadjusted to fit table." label="Insert single plate location (app)" size="normal" onAction="AP1" />
<button id="insertplates" screentip="Insert double plate location (AP2+'F3')" supertip="Inserts a double plate location ready for insertion of plates. Plates will be autoadjusted to fit table. The width is set to allow for two plates and two lines each of text to a page" label="Insert double plate location (app)" size="normal" onAction="AP2" />
</group>
<group id="Figures" label="Figures">
<button id="F1" screentip="Insert single figure location (F1+'F3')" supertip="Inserts a single figure location ready for insertion of a figure. Figure will be autoadjusted to fit table." label="Insert single figure location" size="normal" onAction="F1" />
<button id="F2" screentip="Insert double figure location (F2+'F3')" supertip="Inserts a double figure location ready for insertion of figures. Figures will be autoadjusted to fit table." label="Insert double figure location" size="normal" onAction="F2" />
<button id="insertFTOC" supertip="Inserts a figure table of contents. Locate your cursor after the existing table of contents for tables before clicking." label="Insert a Figure Table of Contents" size="normal" onAction="Insert_TOC_Figures" />
</group>
</tab>
</tabs>
</ribbon>
</customUI>