Heading checkbox in Excel view ribbon.

Nikhil2803

New Member
Joined
Jul 18, 2023
Messages
34
Office Version
  1. 365
Platform
  1. Windows
Hi Team, I am working on a Excel macros work. While I am working on the sheets, I have enabled the Headings and Formula Bar under View ribbons. The problem is whenever I am opening the excel, every time I have to enabled this manually. I want the headings checkbox to be checked every time a user open this excel sheet. Could anyone help how to achieve this.
1695137146958.png
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Hi in your VBA code you can add

VBA Code:
Application.DisplayFormulaBar = True
or FALSE to turn it off.

Same for headings :
VBA Code:
Application.DisplayHeadings = True
or FALSE for off
Rgds
Rob
 
Upvote 0
Solution
Hi in your VBA code you can add

VBA Code:
Application.DisplayFormulaBar = True
or FALSE to turn it off.

Same for headings :
VBA Code:
Application.DisplayHeadings = True
or FALSE for off
Rgds
Rob
Thank you for the inputs.
 
Upvote 0
youre welcome. glad we could help.

thanks for the feedback

Rob
 
Upvote 0
Please note that when marking a post as the solution, please mark the actual thread that contains the solution (not your own post acknowledging that some other post is the solution).

You will notice that once you mark a post as the solution, it also appears at the very top under the original question, so anyone can easily see at quick glance the original question and the solution. So marking any post that does not actually contain the solution would kind of defeat the purpose of that.

I have gone ahead and change the posted solution for you.
 
Upvote 0

Forum statistics

Threads
1,215,174
Messages
6,123,454
Members
449,100
Latest member
sktz

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