Lesson#73: Take input by input box and show it in the message box

Lesson#73: Take input by input box and show it in the message box
This post will make you learn how to show an input box in VBA. Take input by input box and show it in the message box.

1. Go to Developer Tab.

2. Click on Insert.
3. Select Button (Form Control).

4. Put the button on the worksheet by dragging and putting it on the sheet.

5. Immediately Macro name window will appear.

6. Click on New.

7. There you have to put this Code.

Sub Button2_Click()
Dim Name As String
Name = InputBox(“What is your Name?”)
MsgBox (“Hello “) + Name
End Sub

8. Click on Run Sub/ UserForm.

Now you can Input any string into the input box and show it in a message box after “Hello ”

See also  Lesson#231: Fixing Excel Crashing When Opening a File: Expert Solutions

Hi! I am Puspendu. I am the founder and author of Excelabcd. I am little creative person, blogger and Excel-maniac guy. I hope you enjoy my blog.

Leave a Reply

Your email address will not be published. Required fields are marked *

*