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.
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]
Tagged:
0