Formula to return text if values are above or below

lizmorton1990

New Member
Joined
Aug 19, 2020
Messages
13
Office Version
  1. 2013
Platform
  1. Windows
Hi,

I am trying to create a formula based on values.

In column A I have a series of £££ values some plus and some minus.

I need a formula that will put "Issue" if any of these values are above or equal to £50 and above or equal to minus £50. If they are below £50 then I want to it to say 'Below Threshold'

So far I have:

=IF(AND(A1>=50), "Issue", "Below Threshold")

What I can't seem to figure out is how to add the above & equal to minus £50 part, I have tried adding this: =IF(AND(A1>=50, A1>=-50), "Issue", "Below Threshold") but it doesn't work, please help :)

This is my data set attached and its just not working for the (975.00)
 

Attachments

  • Capture.PNG
    Capture.PNG
    2.9 KB · Views: 2

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hi & welcome to MrExcel.
-975 is less than -50 so I would expect it to be "Below Threshold"
At a guess, is this what you mean
=IF(OR(A1>=50, A1<=-50), "Issue", "Below Threshold")
Or
=IF(Abs(A1)>=50,"Issue","Below Threshold")
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,094
Messages
6,123,071
Members
449,092
Latest member
ipruravindra

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