formula Calculate interest by amount

abdelfattah

Well-known Member
Joined
May 3, 2019
Messages
1,429
Office Version
  1. 2019
  2. 2010
Platform
  1. Windows
hello
I would like to know how interest is calculated by amount

For example, from the amount of 3000 to 25000, interest is calculated as 20%

From the amount of 25000 to 50,000 the interest is calculated 22% g

From the amount of 50000 to 100,000, interest is calculated 25% g

Thank you very much
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
If you need the amount + interest:

=IF(AND(A1>=3000,A1<25000),A1*1.2,IF(AND(A1>=25000,A1<50000),A1*1.22,IF(AND(A1>=50000,A1<100000),A1*1.25,0)))

If you need just the interest:

=IF(AND(A1>=3000,A1<25000),A1*0.2,IF(AND(A1>=25000,A1<50000),A1*0.22,IF(AND(A1>=50000,A1<100000),A1*0.25,0)))
 
Upvote 0
it some thing wrong the value is not right
 
Last edited:
Upvote 0
no no every thing is ok i'm wrong your formulas works very well thank so much
 
Upvote 0
Alt suggestion, try:
Code:
=A1*IFERROR(LOOKUP(A1,{3000,25000,50000},{0.2,0.22,0.25}),0)
 
Upvote 0
Solution
wow ! JackDanlce i'm surprised this formula despite it is very short but works perfectly , thanks buddy
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,377
Members
448,955
Latest member
BatCoder

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