How to set excel formula alert on amount in minimum and maximum

gc7sdu

New Member
Joined
Apr 15, 2024
Messages
22
Office Version
  1. 2021
Platform
  1. Windows
Hi,

how to set excel formula alert on figures reached in minimum or maximum? example sales reached near min or reach maximum target.

Thank you
 
If you want the alert to be just text in a cell, try this:

Book6
ABCDE
1Start PoorEnd PoorStart Exc.End Exc.
250006000800010000
3
4SalesAlert
53000 
Sales
Cell Formulas
RangeFormula
B5B5=IF(AND(A5>=A2,A5<=B2),"Poor",IF(AND(A5>=D2,A5<=E2),"Excellent",""))
Hi Legendary,

Thanks for your advise. if the figures fall in between at 6001 to 7999 will be stated as "Average". May i know how to add in this in between?
 
Upvote 0

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
It does not make sense to have a 5000-6000. That doesn't cover 0-5000.
Similarly, 8000-12000 doesn't cover any sales that is more than 120000. Here's my suggestion.
Book1
ABCDE
1StartStatusSalesAlert
20Fail6001Average
36000Average
48000Success
Sheet2
Cell Formulas
RangeFormula
E2E2=XLOOKUP(D2,A2:A4,B2:B4,,-1)
 
Upvote 0
It does not make sense to have a 5000-6000. That doesn't cover 0-5000.
Similarly, 8000-12000 doesn't cover any sales that is more than 120000. Here's my suggestion.
Book1
ABCDE
1StartStatusSalesAlert
20Fail6001Average
36000Average
48000Success
Sheet2
Cell Formulas
RangeFormula
E2E2=XLOOKUP(D2,A2:A4,B2:B4,,-1)
Hi Cubist,

Understand your concern. i just want to set alert on those sales doing nearest at min and max levels. Appreciate you can guide me to add in "Average" alert in previous formula.

B5B5=IF(AND(A5>=A2,A5<=B2),"Poor",IF(AND(A5>=D2,A5<=E2),"Excellent",""))
[th]
Cell Formulas​
[/th]​
[th]
Range​
[/th][th]
Formula​
[/th]​

Thanks
 
Upvote 0
Understand your concern. i just want to set alert on those sales doing nearest at min and max levels. Appreciate you can guide me to add in "Average" alert in previous formula
Did you try my formula?
 
Upvote 0
Did you try my formula?

Hi Cubist,

Yes i did tried. By the way, my sales having 2 grades if hit Grade B for example at 13000, then the status will turn up to another row as Min level. which mean status in Grade A will disappearing. Looking your kind advise. Thanks

figuresstatussalealert
0Fail8001Success
6000Average
8000Success
GradeMinAverageMaxActual SalesStatus
A5000-60006001-79998000-120008300Success
B12000-1500015001-1699917000-20000
 
Upvote 0

Forum statistics

Threads
1,224,750
Messages
6,180,736
Members
452,995
Latest member
isldboy

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