You could use a workbook open event:
Private Sub Workbook_Open()
MsgBox ("HELLO WORLD")
End Sub
If you are not familiar with VBA see:
http://www.mvps.org/dmcritchie/excel/getstarted.htm
--
g.s. gsnu200701
"kraway" wrote:
I'd like to display a popup message to anyone opening an Excel workbook. How
do I do it?