If Then function needed
I have a column that is "Days to Complete" that is calculated by =ABS((NETWORKDAY([Due Date]1, [Todays Date]1)))
But I have another column that is called "Status" which is a drop down list . If I set this column to "Complete" I want the column "Days to complete" to be set to "0" or blank.
Best Answer
-
Return blank on complete:
=if(Status@row = "Complete","",NETWORKDAY([Due Date]@row, today()))
Return zero on complete:
=if(Status@row = "Complete",0,NETWORKDAY([Due Date]@row, today()))
Give that a try and let me know if it works for you.
Answers
-
Return blank on complete:
=if(Status@row = "Complete","",NETWORKDAY([Due Date]@row, today()))
Return zero on complete:
=if(Status@row = "Complete",0,NETWORKDAY([Due Date]@row, today()))
Give that a try and let me know if it works for you.
-
I love this community . Works like a charm Thanks so much
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!