Popup warning when swithcing sheets in workbook

ARy1229

New Member
Joined
Feb 22, 2019
Messages
1
Hi all, I am generally pretty good with Excel but I havenever worked with visual basic or writing macros. In my current role I ambuilding a template for project managers to use to forecast. One of the itemsis to check the number of people forecasted against the prior month peopleworked. I did a formula to determine the variance over/under by decimal andwould like to have a pop up appear to point out that the variance is 10% offfrom prior month trend. Is this even possible?
THanks.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
try this.

Right click on the sheet name - view code
Paste this in

Code:
Private Sub Worksheet_Activate()
If [A1] >= 10 Then MsgBox ("variance is 10% off from prior month trend.")
End Sub

when you activate that sheet AND cell A1 is greater than 10 you will get them message.

hth,

ROss
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

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