I want to minimize the ribbon in Excel 2013 with VBA. I do not want to toggle the ribbon, and I do not want to hide everything including "File", "Insert", etc. I have tried several different methods, but none satisfy what I want. This hides everything:
This toggles:
And this also toggles:
How can I simply force my ribbon to be minimized?
Code:
Application.ExecuteExcel4Macro "Show.ToolBar(""Ribbon"",False)
Code:
CommandBars.ExecuteMso "MinimizeRibbon"
Code:
SendKeys "^{F1}"