DisplayFormulaBar Application Property in VBA is used to hide or show the formula bar. It has Boolean value. If the value is true then it show the formula bar on the Excel screen. Else, it hides the formula bar. Please find the more information and syntax in the following chapter.
VBA DisplayFormulaBar Application Property – Syntax
Here syntax for DisplayFormulaBar Property of application object in VBA.
Application. DisplayFormulaBar
Where DisplayFormulaBar as String.
In the above syntax Application represents object and DisplayFormulaBar is the Property of Application object.
VBA DisplayFormulaBar Application Property: Example 1
Please find the below example for DisplayFormulaBar Property of application object in excel VBA. The below example shows the formula bar in the Excel screen.
Sub Appl_Display_FrmlBr_Ex1() 'DisplayFormulaBar is the property of application object Application.DisplayFormulaBar = True End Sub
VBA DisplayFormulaBar Application Property: Example 2
Please find the below example for DisplayFormulaBar Property of application object in excel VBA. The below example hides the formula bar in the Excel screen.
Sub Appl_Display_FrmlBr_Ex2() 'DisplayFormulaBar is the property of application object Application.DisplayFormulaBar = False End Sub
VBA DisplayFormulaBar Application Property – Instructions
Please follow the below steps to execute the VBA code to save the excel file.
Step 1: Open any existing Excel Application.
Step 2: Press Alt+F11 – This will open the VBA editor window.
Step 3: Insert a code module from then insert menu.
Step 4: Copy the above code and paste in the code module which have inserted in the above step.
Step 5: Now press F5 to execute the macro code to display formula bar or not.