PDA

View Full Version : Welcome message box



esherr77
06-22-2017, 08:06 PM
hi guys

been trying the following in order to get a nice looking welcome message

Sub Auto_Open()
msgbox "Welcome to Excel"
End Sub

Yet it just doesnt open up whenever I open the file.

Any suggestion is well accepted.

Thanks in advance.

mdmackillop
06-23-2017, 12:20 AM
In ThisWorkbook module

Private Sub Workbook_Open()
MsgBox "Welcome to Excel"
End Sub