Macro to hide Ribbons

kelly mort

Well-known Member
Joined
Apr 10, 2017
Messages
2,169
Office Version
  1. 2016
Platform
  1. Windows
Hell All,
I need a macro that will hide the ribbon tabs and show only the working area when i open my workbook. If this is possible then somebody should help me out. Thanks
Kelly
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Or you can just use this Excel4Macro :
Code:
Application.ExecuteExcel4Macro "Show.ToolBar(""Ribbon"",False)"

Set the last argument to TRUE to show the ribbon back.
 
Upvote 0
According to your needs, this may hep you also;

Code:
Application.DisplayFullScreen = True


And, use "False" to switch back.

You can place these codes in your workbook's Open and Close events.
 
Upvote 0
Or you can just use this Excel4Macro :
Code:
Application.ExecuteExcel4Macro "Show.ToolBar(""Ribbon"",False)"

Set the last argument to TRUE to show the ribbon back.

Yours did what i wanted then left the formula bar. Thanks for it. I can still use it.
 
Upvote 0
According to your needs, this may hep you also;

Code:
Application.DisplayFullScreen = True


And, use "False" to switch back.

You can place these codes in your workbook's Open and Close events.

Yesss!!!!!!! This is the exact thing that i wanted. Thanks for it.

Ps.But when i click on restore, the ribbons show again on the window. How do i get rid of this?
Thanks again.
Kelly
 
Last edited:
Upvote 0
Or you can just use this Excel4Macro :
Code:
Application.ExecuteExcel4Macro "Show.ToolBar(""Ribbon"",False)"

Set the last argument to TRUE to show the ribbon back.

Oh okay. After unchecking formula bar from the view tab, your code worked like a charm!!!!!!
Thanks again.
Kelly
 
Upvote 0

Forum statistics

Threads
1,215,180
Messages
6,123,504
Members
449,101
Latest member
mgro123

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top