Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Previous Year Comparisons (by week)
Has anyone being able to put together a search with shows the weekly sales in sequential columns.
I need to display the following:
This Week | Last Week | Same Week last Year
I have used the following formula for the first two:
decode(to_char({trandate},'IW'), to_char({today},'IW'), {netamount}, 0)
and
decode(to_char({trandate},'IW'), to_char({today},'IW')-1, {netamount}, 0)
But, getting This Week last Year is proving to be more complex, as it has the same week number - and whilst I can compare years, I'm concerned that this will return incorrect figures for any week which spans two years.
0