Create a Message Box

This tutorial shows how to create a message box through the use of VBA

METHOD 1. Create a Message Box using VBA

VBA

Sub Create_Message_Box()
MsgBox "Excel is great"

End Sub

ADJUSTABLE PARAMETERS
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 about how to create a message box

EXPLANATION

EXPLANATION

This tutorial shows how to create a message box and display a certain message, by using VBA code.

RELATED TOPICS

Related Topic Description Related Topic and Description
How to add a new line in a message box through the use of VBA
How to create a message box and display a value that is captured in a specific cell through the use of VBA