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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
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