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!
Looking for Quick Help on a Saved Searcg
I have the following formula written (successfully) to capture all invoices for our Sales Team for all accounts in a given period.
CASE WHEN TO_CHAR ({transaction.trandate},'Mon YYYY')= 'Feb 2014' AND {transaction.type} = 'Invoice' AND {transaction.account} = 'Sales' then {transaction.amount} else 0 end
However,
I also need to add Credit Memo transaction type so to properly get final sales figures
My failed formula to do this was:
CASE WHEN TO_CHAR ({transaction.trandate},'Mon YYYY')= 'Jan 2014' AND {transaction.type} = ('Invoice','Credit Memo') AND {transaction.account} = 'Sales' then {transaction.amount} else 0 end
Can anyone help me before Monday AM???- how to add Credit memo?
0