Can I create message box or user form that doesn't freeze the screen?

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,195
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. 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:
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
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Wow,
Thanks dmt32,
indirectly it helped,
one of the comments was that they would just use shapes and as I think about it this makes perfect sense, rather than a message box I can just have yes no shape with macros attached surrounded buy another shape that holds the message and make the shapes visible

so i'll play about with this all day and see how it goes
thanks
tony
 
Upvote 0

Forum statistics

Threads
1,215,453
Messages
6,124,930
Members
449,195
Latest member
Stevenciu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top