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
- Smartsheet Customer Resources
- 62.4K Get Help
- 364 Global Discussions
- 200 Industry Talk
- 430 Announcements
- 4.4K Ideas & Feature Requests
- 137 Brandfolder
- 129 Just for fun
- 128 Community Job Board
- 446 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 284 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!