Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Nested CASE WHEN THEN END - Formula ignoring part of case statement
Hi, i have the following formula:
CASE {custitem_item_type_standard_matrix} WHEN 'Parent' THEN (CASE WHEN INSTR({displayname}, {custitem_brand}) = 0 THEN {custitem_brand} || ' ' END) || {displayname} WHEN 'Standard' THEN (CASE WHEN INSTR({displayname}, {custitem_brand}) = 0 THEN {custitem_brand} || ' ' END) || {displayname} ELSE ((CASE WHEN INSTR({displayname}, {custitem_brand}) = 0 THEN {custitem_brand} || ' ' END) || {displayname} || NVL2({custitem1}, ' - ' || {custitem1}, '') || NVL2({custitem2}, ' - ' || {custitem2}, '') || NVL2({custitem_design}, ' - ' || {custitem_design}, '') || NVL2({custitem_total_weight}, ' - ' || {custitem_total_weight}, '') || NVL2({custitem_length}, ' - ' || {custitem_length}, '') || NVL2({custitem_weapon}, ' - ' || {custitem_weapon}, '') ||