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.
Formula too long
I am trying to write a formula whereby there are multiple conditions that are too long in total for the formula field in a custom field:
[CODE]
CASE
WHEN {customrecord.internalid} = '1759' and {customstartdate} BETWEEN '07/01/2012' and '08/01/2012' THEN 1
WHEN {customrecord.internalid} = '1759' and {customstartdate} BETWEEN '08/01/2012' and '09/01/2012' THEN 2
WHEN {customrecord.internalid} = '1759' and {customstartdate} BETWEEN '09/01/2012' and '10/01/2012' THEN 3
WHEN {customrecord.internalid} = '1759' and {customstartdate} BETWEEN '10/01/2012' and '11/01/2012' THEN 4
WHEN {customrecord.internalid} = '1759' and {customstartdate} BETWEEN '11/01/2012' and '12/01/2012' THEN 5
...
END
[CODE]