A MsgBox is nothing but a dialog box that you can use to inform your users by showing a custom message or get some basic inputs (such as Yes/No or OK/Cancel). While the MsgBox dialog box is displayed, your VBA code is halted. You need to click any of the buttons in the MsgBox to run the remaining VBA code.

Anatomy of a VBA MsgBox in Excel

A message box has the following parts:

Syntax of the VBA MsgBox Function

As I mentioned, MsgBox is a function and has a syntax similar to other VBA functions. MsgBox( prompt [, buttons ] [, title ] [, helpfile, context ] )

prompt – This is a required argument. It displays the message that you see in the MsgBox. In our example, the text “This is a sample MsgBox” is the ‘prompt’. You can use up to 1024 characters in the prompt, and can also use it to display the values of variables. In case you want to show a prompt that has multiple lines, you can do that as well (more on this later in this tutorial). [buttons] – It determines what buttons and icons are displayed in the MsgBox. For example, if I use vbOkOnly, it will show only the OK button, and if I use vbOKCancel, it will show both the OK and Cancel buttons. I will cover different kinds of buttons later in this tutorial. [title] – Here you can specify what caption you want in the message dialog box. This is displayed in the title bar of the MsgBox. If you don’t specify anything, it will show the name of the application. [helpfile] – You can specify a help file that can be accessed when a user clicks on the Help button. The help button would appear only when you use the button code for it. If you’re using a help file, you also need to also specify the context argument. [context] – It is a numeric expression that is the Help context number assigned to the appropriate Help topic.

If you’re new to the concept of Msgbox, feel free to ignore the [helpfile] and [context] arguments. I have rarely seen these being used. Note: All the arguments in square brackets are optional. Only the ‘prompt’ argument is mandatory.

Excel VBA MsgBox Button Constants (Examples)

In this section, I will cover the different types of buttons that you can use with a VBA MsgBox. Before I show you the VBA code for it and how the MsgBox looks, here is a table that lists all the different button constants you can use. Note: While going through the examples of creating different buttons, you may wonder what’s the point of having these buttons if it doesn’t have any impact on the code. It does! Based on the selection, you can code what you want the code to do. For example, if you select OK, the code should continue, and if you click Cancel, the code should stop. This can be done by using variables and assigning the value of the Message Box to a variable. We will cover this in the later sections of this tutorial. Now let’s have a look at some examples of how the different buttons can be displayed in a MsgBox and how it looks.

MsgBox Buttons – vbOKOnly (Default)

If you only use the prompt and don’t specify any of the arguments, you will get the default message box as shown below:

Below is the code that will give this message box: Note that the text string needs to be in double quotes. You can also use the button constant vbOKOnly, but even if you don’t specify anything, it’s taken as default.

MsgBox Buttons – OK & Cancel

If you only want to show the OK and the Cancel button, you need to use the vbOKCancel constant.

MsgBox Buttons – Abort, Retry, and Ignore

You can use the ‘vbAbortRetryIgnore’ constant to show the Abort, Retry, and the Ignore buttons.

MsgBox Buttons – Yes and No

You can use the ‘vbYesNo’ constant to show the Yes and No buttons.

MsgBox Buttons – Yes, No and Cancel

You can use the ‘vbYesNoCancel’ constant to show the Yes, No, and Cancel buttons.

MsgBox Buttons – Retry and Cancel

You can use the ‘vbRetryCancel’ constant to show the Retry and Cancel buttons.

MsgBox Buttons – Help Button

You can use the ‘vbMsgBoxHelpButton’ constant to show the help button. You can use it with other button constants.

Note that in this code, we have combined two different button constants (vbRetryCancel + vbMsgBoxHelpButton). The first part shows the Retry and Cancel buttons and the second part shows the Help button.

MsgBox Buttons – Setting a Default Button

You can use the ‘vbDefaultButton1’ constant to set the first button as default. This means that the button is already selected and if you press enter, it executes that button. Below is the code that will set the second button (the ‘No’ button) as the default.

In most cases, the left-most button is the default button. You can choose other buttons using vbDefaultButton2, vbDefaultButton3, and vbDefaultButton4.

Excel VBA MsgBox Icon Constants (Examples)

Apart from the buttons, you can also customize the icons that are displayed in the MsgBox dialog box. For example, you can have a red critical icon or a blue information icon. Below is a table that lists the code that will show the corresponding icon.

MsgBox Icons – Critical

If you want to show a critical icon in your MsgBox, use the vbCritical constant. You can use this along with other button constants (by putting a + sign in between the codes). For example, below is a code that will show the default OK button with a critical icon.

If you want to show the critical icon with Yes and No buttons, use the following code:

MsgBox Icons – Question

If you want to show a critical icon in your MsgBox, use the vbQuestion constant.

MsgBox Icons – Exclamation

If you want to show an exclamation icon in your MsgBox, use the vbExclamation constant.

MsgBox Icons – Information

If you want to show an information icon in your MsgBox, use the vbInformation constant.

Customizing Title and Prompt in the MsgBox

When using MsgBox, you can customize the title and the prompt messages. So far, the example we have seen have used Microsoft Excel as the title. In case you don’t specify the title argument, MsgBox automatically uses the title of the application (which has been Microsoft Excel in this case). You can customize the title by specifying it in the code as shown below:

Similarly, you can also customize the prompt message.

You can also add line breaks in the prompt message. In the below code, I have added a line break using ‘vbNewLine’.

You can also use the carriage return character – Chr(13) – or line feed – Chr(10) to insert a new line in the prompt message. Note that you can add a new line to the prompt message only and not the title.

Assigning MsgBox Value to a Variable

So far, we have seen the examples where we have created message boxes and customized the buttons, icons, title, and prompt. However, clicking a button has done nothing. With MsgBox function in Excel, you can decide what you want to do when a user clicks a specific button. And this is possible as every button has a value associated to it. So if I click on the Yes button, the MsgBox function returns a value (6 or the constant vbYes) which I can use in my code. Similarly, is the user selects the No button, it returns a different value ((7 or the constant vbNo)) that I can use in the code. Below is a table that shows the exact values and the constant returned by the MsgBox function. You don’t need to memorize these, just be aware of it and you can use the constants which are easier to use. Now let’s see how we can control the VBA macro code based on what button a user clicks. In the below code, if the user clicks Yes, it displays the message “You Clicked Yes”, and if the user clicks No, it displays, “You clicked No”.

In the above code, I have assigned the value of the MsgBox function to the Result variable. When you click Yes button, the Result variable gets the vbYes constant (or the number 6) and when you click No, the Result variable gets the vbNo constant (or the number 7). Then I used an If Then Else construct to check if the Result variable holds the value vbYes. If it does, it shows the prompt “You Clicked Yes”, else it shows “You clicked No”. You can use the same concept to run a code if a user clicks Yes and exit the sub when he/she clicks No. If you want to further dig into the Message Box function, here is the official document on it.

Excel VBA Split Function. Excel VBA InStr Function. Working with Cells and Ranges in Excel VBA. Working with Worksheets in VBA. Working with Workbooks in VBA. Using Loops in Excel VBA. Understanding Excel VBA Data Types (Variables and Constants) How to Create and Use Personal Macro Workbook in Excel. Useful Excel Macro Code Examples. Using For Next Loop in Excel VBA. Excel VBA Events – An Easy (and Complete) Guide. How to Run a Macro in Excel – A Complete Step-by-Step Guide. How to Create and Use an Excel Add-in. Using Active Cell in VBA in Excel (Examples)

Dim Result As VbMsgBoxResult Sub MsgBoxInformationIcon() Result = MsgBox(“Do you want to continue?”, vbYesNo + vbQuestion) MsgBox Result ‘here you prompt the return-value in a message box If Result = vbYes Then MsgBox “You clicked Yes” Else: MsgBox “You clicked No” End If End Sub Sub MsgBoxInformationIcon() Result = MsgBox(“Do you want to continue?”, vbYesNo + vbQuestion) MsgBox Result ‘here you prompt the return-value in a message box If Result = vbYes Then MsgBox “You clicked Yes” Else: MsgBox “You clicked No” End If End Sub