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.
Saved Search: Are values specified in Available Filters accessible in Formulas?
There are a number of examples of saved searches that use formulas to create columns for Monthly Sales totals.
Typically something like CASE WHEN TO_CHAR({trandate},'YYYYMM')='201511' then {quantity} ELSE 0 END. Or something comparable with DECODE.
Next level of sophistication would be to replace the hardcoded '201511' with something like to_char(add_months({today},+1),'YYYYMM') which would allow you to build a set of rolling buckets extending X months out from {today} . That I can handle.
Next jump would be to support rolling buckets not based on {today}. If the search has an Available Filter like trandate On or After and the users chooses June 1, 2014 is there any way to access that date (i.e., June 1, 2014) and use it in a Formula? I'm envisioning something like {availablefilter.rangestartdate}.