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!
ISO Week Number - Show Date Instead
I have a saved search that shows the ISO week number (using TO_CHAR({trandate},'IW') ). I would like to show the starting date for that week.
ie ISO Week 1 is 30/12/2013, Week 2 is 06/01/2014.
I have the logic working in Excel, but don't know the function references for putting into NS.
Eg values
* NAME | FUNCTION | EXAMPLE *
ISO_Week_Today | TO_CHAR({trandate},'IW') | 27
Today-As-Day-of-Week | DAYOFWEEK(NOW(),2) | 3
Start_Of_This_Week | NOW() -Today_As_Day_Of_Week + 1 | 30/06/14
Start_Of_Year | Start_Of_This_Week - (ISO_week_Today-1) * 7 | 30/12/2013
Could anyone please advise appropriate functions?