Excel Formula Help/ Question

emdog

New Member
Joined
Jan 3, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hello,

I need some help with creating a formula, there has to be an easy way to do this. I have been trying to figure this out for hours now and I need some help. I am trying to create a formula for this table below. If the number is within the range of numbers it needs to be multiplied by the certain percentage.
1704300538751.png


This is easy to do but this is issue I am coming into: (I will be using the 30,000 as an example)

If the amount is greater than 3000 then the first 3,000 is multiplied by 1% then the next 3,000 is multiplied by 2% and so on. I need help with a formula for this. Is this even possible?
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Hi! Welcome to Mr.Excel!

Should the total amount due for this be $1,194.85?
 
Upvote 0
I'm certain there's a better way but this is my 10 minute novice answer. Row 3 is the $0-$3,000 line; Column A = Min Income; E3 is the Taxable Income amount.

=IF(MATCH(E3,$B$3:$B$7,1)>=1,(INDEX($B$3:$B$7,1)-INDEX($A$3:$A$7,1))*INDEX($C$3:$C$7,1),0)+IF(MATCH(E3,$B$3:$B$7,1)>=2,(INDEX($B$3:$B$7,2)-INDEX($A$3:$A$7,2))*INDEX($C$3:$C$7,2),0)+IF(MATCH(E3,$B$3:$B$7,1)>=3,(INDEX($B$3:$B$7,3)-INDEX($A$3:$A$7,3))*INDEX($C$3:$C$7,3),0)+IF(MATCH(E3,$B$3:$B$7,1)>=4,(INDEX($B$3:$B$7,4)-INDEX($A$3:$A$7,4))*INDEX($C$3:$C$7,4),0)+IF(MATCH(E3,$B$3:$B$7,1)>=5,(INDEX($B$3:$B$7,4)-INDEX($A$3:$A$7,4))*INDEX($C$3:$C$7,4),0)+(E3-OFFSET($B$2,MATCH(E3,$B$3:$B$7,1),))*INDEX($C$3:$C$7,MATCH(E3,$B$3:$B$7,1)+1)
Excel Formula:
 
Upvote 0
Book1
ABCDEFG
1Tax Table
2Min. IncomeMax IncomeTaxTaxable Income30,000
3-3,0001.0%Amount Due1194.90
43,0016,0002.0%
56,00111,0003.0%
611,00125,0005.0%
725,001100,000,0005.1%
Sheet1
Cell Formulas
RangeFormula
G3G3=IF(G2>B6,((G2-B6)*C7)+939.9,IF(AND(G2<A7,G2>B5),((G2-B5)*C6)+239.95,IF(AND(G2<A6,G2>B4),((G2-B4)*C5)+89.98,IF(AND(G2<A5,G2>B3),((G2-B3)*C4)+30,G2*C3))))
 
Upvote 0
Hello,

I need some help with creating a formula, there has to be an easy way to do this. I have been trying to figure this out for hours now and I need some help. I am trying to create a formula for this table below. If the number is within the range of numbers it needs to be multiplied by the certain percentage.
View attachment 104311

This is easy to do but this is issue I am coming into: (I will be using the 30,000 as an example)

If the amount is greater than 3000 then the first 3,000 is multiplied by 1% then the next 3,000 is multiplied by 2% and so on. I need help with a formula for this. Is this even possible?
The answer that I should be getting is 1,235.
 
Upvote 0
Here's another option. The table in columns I:J is only there to check the result of the formula in G2.

Book1
ABCDEFGHIJK
1ThresholdCapRateDeltaAmountTaxAmount in each tierAmt*Rate of that tier
2030001.00%1.00%$ 30,000.00$ 1,195.00300030.00
3300060002.00%1.00%300060.00
46000110003.00%1.00%5000150.00
511000250005.00%2.00%14000700.00
6250001000000005.10%0.10%5000255.00
7
830000$ 1,195.00
Sheet3
Cell Formulas
RangeFormula
G2G2=SUMPRODUCT(--(F2>=A2:A6),(F2-A2:A6),D2:D6)
J2:J6J2=I2:I6*C2:C6
D2:D6D2=C2-N(C1)
I8:J8I8=SUM(I2:I6)
Dynamic array formulas.
 
Upvote 0

Forum statistics

Threads
1,215,093
Messages
6,123,068
Members
449,091
Latest member
remmuS24

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