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
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!