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.
Please note that on Saturday, April 18, 2026, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 15 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
CASE Statement Sum Help
Hello,
I need some help with a CASE Statement I'm writting because you cannot get the total weight of a package in an item fufillment or sales order. My syntax must be off becuase I get an invalid expression result.
CASE Statement:
sum(CASE WHEN {item.weight}*{quantity}<.81 AND {trackingnumbers} LIKE'%1ZT7%') THEN 1 ELSE 0 END
What I want the above statement to say is:
Sum all the line items weight on an item fufillment or sales order (by taking item weight times quantity) and when this is less than .81 AND the tracking number is like 1ZT7 then throw a 1 or 0.
0