Adding another IF Condition to my Current Formula
I'm looking to add this condition IF(Status@row <> "Complete", 0, 1) to my overall conditional formula below. Essentially I'm just adding the rule that if the status is complete than the value should be 1. I'm having issues embedding it in my existing formula, any advice?
=IF(ISBLANK(Start@row), 0, IF(Start@row <= TODAY(), NETWORKDAYS(Start@row, MIN(TODAY(), Finish@row)) / Duration@row, 0))
Best Answer
-
Hey @Ryan Jared
Try this.
=IF(ISBLANK(Start@row), 0, Β IF(Status@rowΒ = "Complete",1, IF(Start@rowΒ <= TODAY(), NETWORKDAYS(Start@row, MIN(TODAY(),Β Finish@row)) /Β Duration@row, 0)))
Will this work for you?
Kelly
Answers
-
Hey @Ryan Jared
Try this.
=IF(ISBLANK(Start@row), 0, Β IF(Status@rowΒ = "Complete",1, IF(Start@rowΒ <= TODAY(), NETWORKDAYS(Start@row, MIN(TODAY(),Β Finish@row)) /Β Duration@row, 0)))
Will this work for you?
Kelly
-
That did the trick! Thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 208 Use Cases
- 517 Announcements
- 5.6K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 84 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!