Thread: [Solved] Problem with Msgbox in VBA
View Single Post
 
Old 09-01-2018, 07:55 AM
jeffreybrown jeffreybrown is offline Windows Vista Office 2007
Expert
 
Join Date: Apr 2016
Posts: 673
jeffreybrown has a spectacular aura aboutjeffreybrown has a spectacular aura about
Default

Take off the parenthesis...

Code:
Sub MessageBox()
    MsgBox "This is a test message", , "This is a Message"
End Sub
Please use code tags when posting code
Reply With Quote