Jul 17, 2023 06:39 AM
I'm trying to return a value if the date matches any of a string of dates. I'm trying to make sure dates don't land on company holidays. Thanks!
Solved! Go to Solution.
Jul 17, 2023 07:18 AM
Hi,
You can try WORKDAY_DIFF({Date},{Date},"list of dates")=0
Weekend will be also included, but I guess it doesn't contradict your goal
Jul 17, 2023 07:18 AM
Hi,
You can try WORKDAY_DIFF({Date},{Date},"list of dates")=0
Weekend will be also included, but I guess it doesn't contradict your goal
Jul 17, 2023 05:05 PM - edited Jul 18, 2023 12:48 AM
Using Workday_diff is a good idea!
If you don't need to add any particular holidays, you can use this formula as well.
IF(WEEKDAY({Date},"Monday")>4,"holiday")