Simple IF Statement but needing to use greater than/Less than

cosberg

New Member
Joined
Sep 24, 2010
Messages
8
<HR style="BACKGROUND-COLOR: #ffffff; COLOR: #ffffff" SIZE=1><!-- / icon and title --><!-- message -->I need to create a If statement to calculate a Penalty using specific terms & Rates.

If my term is Less then 12 mths (Balance x .5%),
if my term is 12 to 23 mths (Balance x 1%),
if my term is 24 - 35 mths (Balance x 2%),
if my term is 36 - 47 mths (Balance x 3%).

Balance $ 1,000.00 Term14Penalty???

We will enter the balance and the term but how do I write the if statement to look at the month ranges to calculate penalty?
<!-- / message -->
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Assuming your term is in A1 and balance is in A2, this calculates the penalty:

=IF(A1<12,A2*0.005,IF(A1<24,A2*0.01,IF(A1<35,A2*0.02,IF(A1<48,A2*0.03,"Term is 48 Mos or Greater"))))
 
Upvote 0

Forum statistics

Threads
1,224,506
Messages
6,179,159
Members
452,892
Latest member
yadavagiri

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