tonywatsonhelp
Well-known Member
- Joined
- Feb 24, 2014
- Messages
- 3,210
- Office Version
- 365
- 2019
- 2016
- Platform
- Windows
Hi everyone,
Ok so I have this macro that runs a warning message box when someone is about to send in there report saying this is the report you are about to send in are you happy?
it all works great except freezes the screen until they click yes or no.
I'd like them to be able to look at the sheet scroll up and down and view it before click yes or no.
is there a way to do this?
the macro I'm currently using is:
Ok so I have this macro that runs a warning message box when someone is about to send in there report saying this is the report you are about to send in are you happy?
it all works great except freezes the screen until they click yes or no.
I'd like them to be able to look at the sheet scroll up and down and view it before click yes or no.
is there a way to do this?
the macro I'm currently using is:
Code:
Sub WeeklyReportCheck1()
Sheets("Weekly Report").Select
If MsgBox("This is the report you are submiting to Head Office? Do you wish to proceed?", vbYesNo, "Warning!") = vbNo Then Exit Sub
Call Weekly1
End Sub