H Heather Nov 3, 2004 #1 Can anyone tell me how I can make a message box appear when the user opens the workbook? Thanks!!
R Ron de Bruin Nov 3, 2004 #2 Hi Heather See Chip Pearson his page about events http://www.cpearson.com/excel/events.htm Private Sub Workbook_Open() Msgbox "Hi" End Sub
Hi Heather See Chip Pearson his page about events http://www.cpearson.com/excel/events.htm Private Sub Workbook_Open() Msgbox "Hi" End Sub
M merlin Nov 3, 2004 #3 Heather said: Can anyone tell me how I can make a message box appear when the user opens the workbook? Thanks!! Click to expand... Sub Auto_Open() MsgBox "Hello" End Sub
Heather said: Can anyone tell me how I can make a message box appear when the user opens the workbook? Thanks!! Click to expand... Sub Auto_Open() MsgBox "Hello" End Sub