Caption Application Property in VBA represents the name of the title bar that appears in the main Excel widow. If you don’t mention title bar, it displays as “Microsoft Excel”.
VBA Caption Application Property – Syntax
Here syntax for Caption Property of application object in VBA.
Application. Caption
Where Caption as String.
In the above syntax Application represents object and Caption is the Property of Application object.
VBA Caption Application Property: Example 1
Please find the below example for Caption Property of application object in excel VBA. The below macro displays the caption in the title bar.
Sub Appl_StatusBar() ‘It represents the caption message Application.Caption = "Demo of Analysistabs" End Sub
VBA Caption 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.
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 code and find the caption in the title bar window.