Subtracting Dates to determine what is less than 90 Days
Maybe I need to use a different formula, but this was successful in returning "Short" for everything, rather than anything under 90 days. We are trying to call out short start projects or those that require less than the average 90 days, so a difference of 90 or over should return nothing.
=IF([Anticipated Activation Date]@row - [Go Live/Close Date]@row < 90, "Short", "")
Answers
-
I may have figured it out, but now need this information only for a particular service line. I tried below and recieve INVALID DATA TYPE error. Is this because I am mixing math and letters? I am unclear what data type is incorrect.
=IF([Go Live/Close Date]@row - [Anticipated Activation Date]@row < 60, AND([Service Line]@row = "Value-based Hospitalists", "VShort", ""))
-
Looks like the AND placement is wrong, try the below, AND needs to go in front of all the arguments.
=IF(AND([Go Live/Close Date]@row - [Anticipated Activation Date]@row < 60, [Service Line]@row = "Value-based Hospitalists"), "VShort", ""))
Hope that helps
Thanks
Paul
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 412 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 138 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!