Message pop-up when I'm opening an Excel workbook
Message pop-up when I'm opening an Excel workbook
(OP)
Hi,
My intention is to have first a message pop-up when I'm opening an Excel workbook which contains several macros (I want to tell to user which macro should be used first). How can I do this?
Thanks in advance.
My intention is to have first a message pop-up when I'm opening an Excel workbook which contains several macros (I want to tell to user which macro should be used first). How can I do this?
Thanks in advance.
Regards
Fernando





RE: Message pop-up when I'm opening an Excel workbook
RE: Message pop-up when I'm opening an Excel workbook
You are right, this can be a solution. I was thinking only at a simple pop-up message, without radio buttons or check box.
Regards
Fernando
RE: Message pop-up when I'm opening an Excel workbook
SOmething like this perhaps
Private Sub Workbook_Open()
MY_ENTRY = MsgBox("Hello and welcome.", vbOKOnly, "STARTING")
End Sub
this will need to go into the THIS WORKBOOK code window
----------------------------------
Hope this helps.
----------------------------------
maybe only a drafter
but the best user at this company!
RE: Message pop-up when I'm opening an Excel workbook
Definitely you are the best user -:)...Thanks a lot. Its exactly what I was looking for.
Regards
Fernando