Alison has attended:
Excel VBA Intro Intermediate course
Msgbox
what is the syntax for creating a message box in VBA?
RE: msgbox
Hi Alison
The VBA syntax for creating a message box is
Msgbox(Prompt, [Buttons As vbMsgBoxStyle], [Title], [Help File], [Context])
Only the prompt is compulsory. When only the prompt is used the system creates a message box with an OK button.
Hope this helps
Carlos