Popup if value in range is less than 5%

cs8181

New Member
Joined
Oct 16, 2014
Messages
6
I have a range of cells in row 39, with calculated percentages. If a change is made that makes any cell in the range fall below 5%, I would like a popup stating "Exceeded 5% Availability".

This is the VBA code I'm using so far with no result.

Code:
Private Sub Worksheet_Calculate()    If Range.("VA39:ZZ39") < 5 Then
        MsgBox "Busted 5% Availability"
    End If
End Sub
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
As an event driven, Change event runs when a value of cells are changed, but it doesn't run by the change from calculation. Instead of the Change event, Calculate event can be used like you tried but it's not handy as we expect. So I'd like to introduce you how to use the Change event for a changed value from calculation.

Important keyword this time is Dependency Property which displays the relationships between formulas and cells. If no relationships were found, it gives an error, so you need to put an error trap - "On Error Resume Next". And by using Intersect method, you can limit the range.

Here you are.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim myTarget As Range
    On Error Resume Next
        Set myTarget = Intersect(Target.Dependents, Me.Range("V39:ZZ39"))
    On Error GoTo 0
    
    If Not myTarget Is Nothing Then
        If myTarget.Value < 0.05 Then
            Application.Goto myTarget
            MsgBox "Busted 5% Availability", vbInformation, myTarget.Address
        End If
    End If
End Sub

Hope this helps.
 
Last edited:
Upvote 0
I am getting an error now and it is highlighting "If myTarget.Value < 0.05 Then". Not sure what that means.
 
Upvote 0
About that part, I just guessed because I had no idea what kind of data and formulas are on the worksheet. So it needs to be fixed to suit to your worksheet.
Easy solution would be adding an error trap like

Code:
On Error Resure Next
 
Upvote 0
Ah okay, try like this.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim myTarget As Range
    On Error Resume Next
        Set myTarget = Intersect(Target.Dependents, Me.Range("V39:ZZ39"))
    On Error GoTo 0
    
    If Not myTarget Is Nothing Then
	On Error Resume Next
	        If myTarget.Value < 0.05 Then
	            Application.Goto myTarget
	            MsgBox "Busted 5% Availability", vbInformation, myTarget.Address
	        End If
	On Error GoTo 0
    End If
End Sub
 
Upvote 0
Seems to be giving the popup on every change. I double checked and I don't currently have any values under 5%
 
Upvote 0
Okay, anyway the "calculate" event seems to be working. Remove the second On error resume next part then check why it gives you an error. The second IF part was written by my guess because I cannot see the worksheet or formulas, so you can amend it to suit your formula. :)
 
Upvote 0
You could put Validation on 1:58 with the formula

=(COUNTIF($59:$59, "<.05")<>0)

The Alert could be either a Stop, a Warning or Info only.
 
Upvote 0

Forum statistics

Threads
1,214,785
Messages
6,121,543
Members
449,038
Latest member
Guest1337

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