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.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
SQL formula on a saved search for values less than zero
I have a saved search that splits transactions into week numbers, compared to the current week.
I need the SQL formula to return the net amount when the value is less than zero, ie the date is in the future.
This is currently the formula
case TO_CHAR({today},'iw') - TO_CHAR({trandate},'iw') + 12*(TO_CHAR({today},'YYYY')-TO_CHAR({trandate},'YYYY')) when <0 then {netamountnotax} end
Unfortunately I am getting an error, which I assume is the "when <0 then" part
Any suggestions?
0