If # days < xx, then add one year

Roar

New Member
Joined
May 18, 2011
Messages
25
Hi all, I know how to add one year to a date with this function

Code:
=DATE(YEAR(C5)+1,MONTH(C5),DAY(C5))

How can I expand this to say if Cell E5 is less than 61 (days), then add one year.

Thank you, I appreciate the help
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Assuming you want the formula to return C5 if E5 is 61 or greater:
Code:
=IF(E5<61,DATE(YEAR(C5)+1,MONTH(C5),DAY(C5)),C5)
 
Upvote 0
Assuming you want the formula to return C5 if E5 is 61 or greater:
Code:
=IF(E5<61,DATE(YEAR(C5)+1,MONTH(C5),DAY(C5)),C5)
Another way to write that...

=DATE(YEAR(C5)+(E5<61),MONTH(C5),DAY(C5))
 
Upvote 0
Oh thank you thank you thank you! I have a project to present to work and now they will think I am über smart.

:ROFLMAO:
 
Upvote 0

Forum statistics

Threads
1,214,596
Messages
6,120,438
Members
448,966
Latest member
DannyC96

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