Is there a way to hide a toolbar while in Page Sorter view? See attached.
Could at least use a macro to toggle the toolbar. Add the macro icon to the top menu as quick one-click whenever you're in Page Sorter View
Maybe add an "if" scenario
If Page Sorter View = True then toggle toolbar
Sub ToggleToolbar()If CommandBars("Toolbox").Visible ThenCommandBars("Toolbox").Visible = FalseElseCommandBars("Toolbox").Visible = TrueEnd IfEnd Sub