Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
How to create a formula to calculate the net of Debits and Credits in a Saved Search for Rev Rec?
I have a SS that shows the GL Impact of ARM Rev Rec journals. On some account lines, I get both Dr & Cr amounts. I want to see the net in either the Dr or Cr column so I can use the SS output as csv import input to generate a reversing JE. I have a formula to calculate the net, but even using a case statement to determine whether the net is a debit or credit, for accounts with both debits & credits, I get amounts in both columns.
Net: COALESCE({creditamount},{creditfxamount},0)-COALESCE({debitamount},{debitfxamount}, 0)
Debit: CASE WHEN ABS(COALESCE({creditamount},{creditfxamount},0))-ABS(COALESCE({debitamount},{debitfxamount}, 0)) > 0 THEN ABS(COALESCE({creditamount},{creditfxamount},0))-ABS(COALESCE({debitamount},{debitfxamount}, 0)) END