VBA auto hide ribbon in Excel 2013

前端 未结 7 2121
慢半拍i
慢半拍i 2020-12-14 12:13

How to Auto-hide Ribbon in Excel 2013 in VBA? I would like to achieve exactly what I get by clicking on the upper arrow icon at the right top of Excel menu mark

7条回答
  •  时光说笑
    2020-12-14 12:29

    I call this macro on Workbook_Open to check for the ribbon and if not hidden, it will hide the ribbon (I actually have it located in another Sub that also removes the formula bar, status bar, headings, and gridlines at Workbook_Open)...

    Sub HideRibbon()
    If CommandBars("Ribbon").Controls(1).Height < 100 Then
    Exit Sub
    Else
        CommandBars.ExecuteMso ("MinimizeRibbon")
    End If
    End Sub
    

    Then I call this macro on Workbook_BeforeClose to check for the ribbon and if it is not shown, it will show the ribbon for the next excel spreadsheet that is opened.

    Sub ShowRibbon()
    If CommandBars("Ribbon").Controls(1).Height > 100 Then
    Exit Sub
    Else
        CommandBars.ExecuteMso ("MinimizeRibbon")
    End If
    End Sub
    

    This eliminates the chance of hiding the ribbon when the workbook is opened and a user then manually showing the ribbon which in turn would reverse the show on close and actually hide the ribbon. On open, the ribbon would then be shown again. This will keep it the same every time on open and close of the workbook.

提交回复
热议问题