Change Message Box title
This tutorial shows how to change the title in the message box through the use of VBA
METHOD 1. Change Message Box title using VBA
VBA
Sub Change_Message_Box_Title()
MsgBox "Excel is great", , "Title name"
End Sub
ADJUSTABLE PARAMETERS
Title: In this example we have the message box a title of "Title name". You can change the title of the message box by changing "Title name" in the VBA code.
Message: In this example the message that will appear in the message box is "Excel is great". You can change the message that is displayed in the message box by changing "Excel is great" in the VBA code.
Title: In this example we have the message box a title of "Title name". You can change the title of the message box by changing "Title name" in the VBA code.
Message: In this example the message that will appear in the message box is "Excel is great". You can change the message that is displayed in the message box by changing "Excel is great" in the VBA code.
EXPLANATION
This tutorial shows how to change a message box title through the use of VBA.
RELATED TOPICS
Related Topic | Description | Related Topic and Description |
---|---|---|
Create a Message Box | How to create a message box through the use of VBA | |
Message Box referencing to a cell | How to create a message box and display a value that is captured in a specific cell through the use of VBA | |
Add a new line in a Message Box | How to add a new line in a message box through the use of VBA |