VBA Messagebox demo and learning part 1

Subscribers:
613
Published on ● Video Link: https://www.youtube.com/watch?v=P_rlAPxkExQ



Duration: 2:50
37 views
0


Tutorial point article is here: http://www.tutorialspoint.com/vba/vba_message_box.htm

The code is like this:
Function messagebox_demo()
msgbox ("Welcome")
a = msgbox("Do you like blue color?", 1, "Choose options")
msgbox ("The value of a is " & a)
End Function

There are two default msgboxes here, 1. msgbox("Welcome") and 2. msgbox("The value of a is " & a)







Tags:
Visual Basic For Applications
Software (Industry)
Microsoft Excel (Software)