|
-
Mar 28th, 2006, 10:49 AM
#1
Thread Starter
Addicted Member
[RESOLVED] MSG on Workbook Open event EXCEL VBA
I Got message displayed to the user every time the workbook is open.
So I putted it in the Workbook Open sub in the ThisWorkbook.
VB Code:
Private Sub Workbook_Open()
Msgbox "To fully automate this workbook, automatic calculation must be ON"
End Sub
Everything works fine.
Now want I want to do, is to put a checkbox witch the user can check to not display this message anymore.
Is it possible?? How??
-
Mar 28th, 2006, 10:53 AM
#2
Re: MSG on Workbook Open event EXCEL VBA
Bill
You will need to build a Userform if you want to include a checkbox control.
I would suggest that you store the value of the checkbox in a user-defined name within the workbook. Then when the book is opened, you can evaluate that name to see if you need to display the form.
Declan
Don't forget to mark your Thread as resolved.
Take a moment to rate posts that you think are helpful 
-
Mar 28th, 2006, 11:14 AM
#3
Re: MSG on Workbook Open event EXCEL VBA
You could just turn on automatic calculation instead:
VB Code:
Private Sub Workbook_Open()
Application.Calculation = xlCalculationAutomatic
End Sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|