Link to home
Create AccountLog in
Avatar of Frank Freese
Frank FreeseFlag for United States of America

asked on

Dialog box when Excel opens

Folks,
I am have started a workbook that still has some work to do. I will be sending this to show some of my skills. What I need is a dialog box that notifies the user what part of the workbook is still a work-in-progress. How is that done?
Avatar of Martin Liss
Martin Liss
Flag of United States of America image

One way is with a simple Msgbox. In Workbook_Open:

Private Sub Workbook_Open()
MsgBox "...is not complete yet", vbInformation, "Project Status"
End Sub

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Martin Liss
Martin Liss
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of Frank Freese

ASKER

Thanks Martin - worked as expected.
I corrected the typo:) and you’re welcome and I’m glad I was able to help.

If you expand the “Full Biography” section of my profile you’ll find links to some articles I’ve written that may interest you.

Marty - Microsoft MVP 2009 to 2017
              Experts Exchange Most Valuable Expert (MVE) 2015, 2017
              Experts Exchange Top Expert Visual Basic Classic 2012 to 2017
              Experts Exchange Top Expert VBA (current)
Well there older than dirt,
Thanks for the correction and links. Have a safe summer