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.
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