Need help ASAP with multfple IF formula

kmango

New Member
Joined
Jun 8, 2021
Messages
7
Platform
  1. Windows
I need an excel formula to do the following : If A2 = YES, AND IF B2 IS BETWEEN 10,000 AND 15,000, THEN 10,000. IF B2 IS BETWEEN 15,000 AND 20,000 THEN 20,000 IF B2 IS 20000 AND GREATER, THEN 25000.

I got the first part =IF(AND(F2="Yes",D2>=5000000,D2<=6999999),"25000","") but cannot determine how to multiple between amounts.

Help please :)
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
What should happen if B2 is less than 10,000?
 
Upvote 0
Ok, how about
Excel Formula:
=IF(A2<>"Yes","",IF(B2<10000,"",IF(B2<15000,10000,IF(B2<20000,20000,25000))))
 
Upvote 0
Try and or adapt to your requirements.
Use whichever approach you prefer.

T202106a.xlsm
ABCDEFGH
2Yes50,00025,00025,00025,0001000010000
31500020000
42500025000
5
2d
Cell Formulas
RangeFormula
C2C2=IF(A2="Yes",IF(AND(B2>=10000,B2<=15000),10000,IF(AND(B2>=15000,B2<=20000),20000,IF(B2>20000,25000,0))))
D2D2=IF(A2="Yes",LOOKUP(B2,G2:H4),0)
E2E2=IF(A2="Yes",LOOKUP(B2,{10000,10000;15000,20000;25000,25000}),0)
 
Upvote 0
Try

Excel Formula:
=IF(A2="Yes",IF(B2>=20000,25000,IF(B2>15000,20000,IF(B2>=10000,10000,""))),"")
 
Upvote 0
It results as too many arguments

Here is what I'm looking for-if f3=Yes then if D3 is:

between 0-5,999,999 then 0
6,000,000 and 7,999,999 then 25,000
8,000,000 and 9,999,999 then 50,000
10,000,000 and 14,999,999 then 100,000
15,000,000 + then 150,000



=IF(F3<>"Yes","",IF(D3<6000000,"",IF(D3<6000000,79999999,IF(D3<8000000,9999999,IF(D3<10000000,14999999,IF(D3<15000000,25000,50000,100000,150000))))
 
Upvote 0
It results as too many arguments

Here is what I'm looking for-if f3=Yes then if D3 is:

between 0-5,999,999 then 0
6,000,000 and 7,999,999 then 25,000
8,000,000 and 9,999,999 then 50,000
10,000,000 and 14,999,999 then 100,000
15,000,000 + then 150,000



=IF(F3<>"Yes","",IF(D3<6000000,"",IF(D3<6000000,79999999,IF(D3<8000000,9999999,IF(D3<10000000,14999999,IF(D3<15000000,25000,50000,100000,150000))))
Try

Excel Formula:
=IF(F3="Yes",IF(D3>=1500000,150000,IF(D3>=1000000,100000,IF(D3>=800000,50000,IF(D3>=600000,25000,0)))),"")
 
Upvote 0
That formula bears no relation to the question you asked. :confused:
Why not give us the correct details this time & all of them not just some.
 
Upvote 0

Forum statistics

Threads
1,215,581
Messages
6,125,657
Members
449,247
Latest member
wingedshoes

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