Formula help.

System
Employee
This discussion was created from comments split from: Count if Date Column has any dates older than 7 days.
Answers
-
How would I change this formula if I want to apply conditional formatting to a "Date Needed" column. I want to highlight the date needed column if it is less than 7 days from the day it was requested in the "Request Date" column. I tried this and it didn't work. =IF([Date Needed]@row < ([Request Date]@row, (-7), "Yes")
-
Try:
=IF(NETDAYS([Date Needed]@row, [Date Requested]@row) < 7, "Yes")
And play around with what works best, with NETWORKDAYS vs NETDAYS. Or to use your original syntax, it could be something like:
=IF([Request Date]@row > [Date Needed]@row - 7, "Yes")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!