When a specific value present, calculate date from Created to Date of completion
For other sheets, we use formula
=IF(ISBLANK([Manually Actioned By]@row), NETWORKDAYS(Created@row, TODAY()), NETWORKDAYS(Created@row, [Manual Actioned Date]@row))
to tell us the turnaround time for the activity. It might not even be a great formula but it does what I need.
But now, want to only trigger this where Status@row = Failure (from several options available in dropdown). The AI generated formula's aren't working, so appreciate any help.
Best Answer
-
The easiest way to add something like this is to just wrap the whole thing in another IF.
=IF(Status@row = "Failure", existing_formula))
Answers
-
The easiest way to add something like this is to just wrap the whole thing in another IF.
=IF(Status@row = "Failure", existing_formula))
-
Thank you!! In my frustration, I hadn't used "" which is why my previous attempts didn't work! All good now. Thanks again 🙌
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.8K Get Help
- 438 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 509 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!