3 condition IF formula help needed please

Alex D

New Member
Joined
Apr 28, 2020
Messages
48
Office Version
  1. 365
Platform
  1. Windows
What I am trying to do, is create a formula for the QA PAYOUT column, where, IF the QA DQ column is Y, the result is $0, if the QA column result is between 86%-89.99%, the result is $100 and if the QA column result is 90% or higher, the result is $200



QAQA DQ?QA Payout
84.05%Y
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Try this

Excel Formula:
=IF(B2="Y",0,IF(AND(A2>=0.86,A2<=0.8999),100,200))
Format the formula cell as Currency or Accounting

Please note that this formula will show result 200 if QA is less than 86% as well. If you want to show something different in that case, let me know.
 
Upvote 0
Try this

Excel Formula:
=IF(B2="Y",0,IF(AND(A2>=0.86,A2<=0.8999),100,200))
Format the formula cell as Currency or Accounting

Please note that this formula will show result 200 if QA is less than 86% as well. If you want to show something different in that case, let me know.
Thank you!!! Actually, that formula is perfect...I have tested and QA scores under 86 are coming back with $0, which is what I would like. Thank you again.
 
Upvote 0

Forum statistics

Threads
1,215,029
Messages
6,122,755
Members
449,094
Latest member
dsharae57

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