Formula issue
Hi
Have built this formula
I need to return a "High" symbol if my DD helper Column is greater than 10 working days, a "low" symbol if < than 10 working days and if the DD helper column is blank then return blank - but i am getting an error
DD 10 Day helper column is set with a record the date automation - when the status changes to Due Dilgence
=IF(ISBLANK([DD 10 Day - Helper Column]@row), "", IF(WORKDAY([DD 10 Day - Helper Column]@row, 10) < 10, "low", "high"))
Best Answer
-
WORKDAY returns a date, i.e. 10 days after the helper column.
You need to use NETWORKDAY to get the number of days between the helper column and today.
=IF(ISBLANK([DD 10 Day - Helper Column]@row), "", IF(NETWORKDAY([DD 10 Day - Helper Column]@row, TODAY()) < 10, "low", "high"))
Answers
-
WORKDAY returns a date, i.e. 10 days after the helper column.
You need to use NETWORKDAY to get the number of days between the helper column and today.
=IF(ISBLANK([DD 10 Day - Helper Column]@row), "", IF(NETWORKDAY([DD 10 Day - Helper Column]@row, TODAY()) < 10, "low", "high"))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.6K Get Help
- 435 Global Discussions
- 152 Industry Talk
- 495 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 508 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!