Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Sales order saved search formula showing the # of business days the order shipped after ship date
We have a sales order saved search that was working perfectly for a few years and now the formula does not work. We show the amount of business days (excluding weekends) that a sales order shipped after or before its due date. The search has always been main line= false as we want to show each line of the sales order as they sometimes ship on different dates. This was the formula that worked previously and now is not populating.
(TRUNC(To_Char({actualshipdate}-{shipdate})))-((((TRUNC({actualshipdate},'D'))-(TRUNC({shipdate},'D')))/7)*2) - (CASE WHEN TO_CHAR({shipdate},'DY') ='SUN' THEN 1 ELSE 0 END) - (CASE WHEN TO_CHAR({actualshipdate},'DY') ='SAT' THEN 1 ELSE 0 END) + 1