Multiple IF statements, MATCH, INDEX and OR

Capitalmind

New Member
Joined
Mar 30, 2016
Messages
2
Hi all, I'm trying to build a table to calculate compounding of interest however the input amount is something I need to edit and the interest changes at different levels.


I tried stacking multiple IF statements so =IF(A1<=300,0.01,IF(A1>300 OR <1000... my formula breaks.


I don't know how to set banding in an IF statement or nesting AND/OR statements. It's probably better to use an index match but I don't know how to do that either.


Anyway the bands are:


$300 - $1000 0.25%
$1000 - $5000 0.35%
$5000 - $10000 0.4%


I want to look at the left hand value, determine with logic what interest band it is in then show that interest in the second column. I'll sum in the third column.


Any tips appreciated. Stacking multiple IF's is a regular problem for me, probably need INDEX/MATCH only I don't know how to use it.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
See if this works for you.

AB
132581.25
236601281
386553462

<tbody>
</tbody>

Spreadsheet Formulas
CellFormula
B1=A1*IF(A1<1000,0.25,IF(A1<5000,0.35,0.4))
B2=A2*IF(A2<1000,0.25,IF(A2<5000,0.35,0.4))
B3=A3*IF(A3<1000,0.25,IF(A3<5000,0.35,0.4))

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4

Thanks for looking at this. I threw the formula into a spreadsheet though the interest seems to work in reverse meaning as the deposit amount grows the return is less? This was the issue I had with banding, as you can see here (Dropbox link).
 
Upvote 0

Forum statistics

Threads
1,216,082
Messages
6,128,713
Members
449,464
Latest member
againofsoul

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