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!
Saved Search Date Parameters - Accessing and Using in the Formula
I have created a saved search based on the transaction record. I have the following formula:
SUM(CASE WHEN {trandate} BETWEEN TO_DATE('1/1/1986','MM/DD/YYYY') AND trunc({today},'MM')-1 THEN {debitamount} ELSE 0 END) - SUM(CASE WHEN {trandate} BETWEEN TO_DATE('1/1/1986','MM/DD/YYYY') AND trunc({today},'MM')-1 THEN {creditamount} ELSE 0 END)
I use this to sum all transactions up through the last day of the prior month to give me a beginning balance.
I want to be able to substitute the ((trunc({today},'MM')-1)) and replace it with the "from" date from the date filter.