IF Y is blank, and X is not, take Date of X and add 90
i know this is not correct.. but. can someone help me fill in the missing pieces.
=IF(ISBLANK([Renewal End Date]@row, [Agreement End Date]7, +90))
my goal is to have the Next Review column produce a date that is 90 days from either the renewal end date (if there is one) or the agreement end date
Thank you in advance!🙏
Best Answer
-
Hi @Tdillon
Hope you are fine, please try the following formula and convert it to a column format formula:
=IF(AND(NOT(ISBLANK([Renewal End Date]@row)), ISBLANK([Agreement End Date]@row)), [Renewal End Date]@row + 90, IF(NOT(ISBLANK([Agreement End Date]@row)), [Agreement End Date]@row + 90, ""))
the following screenshot shows the result:
And you can develop this formula to avoid weekends and holidays. using more IF statments
bassam.khalil2009@gmail.com
☑️ Are you satisfied with my answer to your question? Please help the Community by marking it as an ( Accepted Answer), and I will be grateful for your "Vote Up" or "Insightful"
Answers
-
Hi @Tdillon
Hope you are fine, please try the following formula and convert it to a column format formula:
=IF(AND(NOT(ISBLANK([Renewal End Date]@row)), ISBLANK([Agreement End Date]@row)), [Renewal End Date]@row + 90, IF(NOT(ISBLANK([Agreement End Date]@row)), [Agreement End Date]@row + 90, ""))
the following screenshot shows the result:
And you can develop this formula to avoid weekends and holidays. using more IF statments
bassam.khalil2009@gmail.com
☑️ Are you satisfied with my answer to your question? Please help the Community by marking it as an ( Accepted Answer), and I will be grateful for your "Vote Up" or "Insightful"
-
THank you @Bassam Khalil
that helped my formula... but then i realized if there is a renewal date in the cell, i will need the most recent date of the 2 (most likely the renewal date) Not sure if i need to add less than or greater than formula to find which date to use.
if you have any insight, it is greatly appreciated!
-
Could you please add a sample sheet shows all cases you find so I can rectify the formula for you
bassam.khalil2009@gmail.com
☑️ Are you satisfied with my answer to your question? Please help the Community by marking it as an ( Accepted Answer), and I will be grateful for your "Vote Up" or "Insightful"
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!