Hi guys, is there a way I can filter the next busi...
# suitescript
t
Hi guys, is there a way I can filter the next business day in saved search? I only see next business week and tomorrow 😐 TIA
h
You may try to use this formula for the filter
Copy code
TOMORROW - CASE WHEN TO_CHAR(TOMORROW, 'DY') = 'SAT' THEN 1 WHEN TO_CHAR(TOMORROW, 'DY') = 'SUN' THEN 2 ELSE 0 END
Put this formula as a value for the date you are trying to compare it to
operator should be "on or after"
t
Thanks Hector, I will try this on my end
I got lost during the process, should be the "Tomorrow" variable is the Date today + 1?