Matt has attended:
Excel VBA Intro Intermediate course
Excel VBA Intro Intermediate course
Message boxes
How can a message box automatically appear on opening a workbook?
RE: Message boxes
Matt,
Write a handler for the Workbook Open event, in the ThisWorkbook module - i.e.
Private Sub Workbook_Open()
MsgBox ("Hi there!")
End Sub
/Roy