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.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
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