if statement with 2 conditions

smazza

New Member
Joined
Feb 11, 2011
Messages
18
I need to write a formula that says if the month in cell M5 is >= to the start date in F7, then take the beginning yrs. rent in D7 & multiply it times J7. I have that part of the formula & it's working, but what I need to add is annual 3% increase to the amount in c1, so that every 12 months, the amount of rent increases by 3%.

so far I have...

=IF(M$5>=$F7,($D7*$J7),"") this part works perfectly, I need to add to this formula...

IF(M$5 is 12 months >, then $D7*DJ7*1.03, if it's 24 months> then $D7*$J7*1.0609)

or is there just a way to tell it to increase by 3% every 12 months?
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
you can have multiple arguments in an if formula

if(m$5>=$f7,(if(m$5 is 12 months,$d7*DJ7*1.03,(if(24 months,$D7*$J7*1.0609,$D7*$J7),""),"")

you might want to try posting your sheet so we can see it if that doesnt help
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,808
Members
452,944
Latest member
2558216095

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