IFs formula request

Muthukrishnan V

Active Member
Joined
May 29, 2008
Messages
280
Office Version
  1. 365
Platform
  1. Windows
Excel 365

Cell B5 contains 32500 in numerical format.

Based on Cell B5, I require a formula in Cell C5 to give

output (50% upto 26000; 40% from 26001; Minimum 13500)

Kindly advise me formula.
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Ok we have to start somewhere. Now I am assuming a lot of things here and I am usually wrong about a lot of things. And I usually miss something but here we go. Now I just want to get the input and output straight. So I am going to say you want to multiply cell B5 by 50% up to 26,000. That gives you the 13,000. Then you want to multiply cell B5 by 40% for numbers 26,001 and higher but you want a minimum of 13,500. But as you can see 33,750 times 40% give you 13,500 but 33,750 is bigger than 32,500 you say is in B5. Or how about this, we put 13,500 from 26,001 to 33,750 then multiply 33,751 times 40%. Now if I am missing something in your request let us know. So let the discussion begin.

Book.xlsx
BC
11
226,00013,000
326,00110,400
433,75013,500
Sheet1
Cell Formulas
RangeFormula
C2C2=B2*0.5
C3:C4C3=B3*0.4
 
Upvote 0
Is this what you want?

Book1
BC
53250015600
Sheet1
Cell Formulas
RangeFormula
C5C5=(MIN(MAX(B5,13500),26000)*0.5)+(MAX(0,B5-26000)*0.4)
 
Upvote 0
Well Mut... hasn't answered anything for some time now but I was thinking about this problem and as a guess I am going to say the below might be close.


WorkBook 1.xlsx
BC
526,00113,500
Sheet1
Cell Formulas
RangeFormula
C5C5=IF(B5>=33750,B5*0.4,IF(B5>=26001,13500,B5*0.5))
 
Upvote 0

Forum statistics

Threads
1,216,073
Messages
6,128,646
Members
449,462
Latest member
Chislobog

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