I seem to have lost the Formatting Menu bar from Excel, to the point where it is not even on the list of toolbars I can reselect.
I have identified that it is down to a specific Excel file that I have created, where I am trying to control which menus are available. Is it possible to programmatically retrieve the Formatting menu, since everyone that opens it is now losing their Formatting toolbar?
As a point of reference the only the code I can think of that may be affecting things is in the on open of 'This Workbook' module.
Application.CommandBars(4).Enabled = False
Application.CommandBars("Edit").Enabled = False
Application.CommandBars("Data").Enabled = False
Application.CommandBars("View").Enabled = False
Application.CommandBars("Window").Enabled = False
Application.CommandBars("Format").Controls("Row").Enabled = False
Application.CommandBars("Format").Controls("Column").Enabled = False
Application.CommandBars("Format").Controls("Sheet").Enabled = False
Application.CommandBars("Format").Controls("AutoFormat...").Enabled = False
Application.CommandBars("Format").Controls("Conditional Formatting...").Enabled = False
Application.CommandBars("Format").Controls("Style...").Enabled = False
Application.CommandBars("Shortcut").Enabled = False
I obviously have the reverse Enabled = true in the close procedure.