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.
NSC | Saved Search Formula > Resolve "Error: Invalid Expression" > CASE WHEN with SUM formula
Scenario
User has a formula that with a CASE expression. The requirement is to get the total of the quotient of 2 fields.
Sample Formula: CASE WHEN {field1} = 'Value' THEN SUM({field2})/SUM({field3}) ELSE 0 END
This formula returns Error: Invalid Expression.
Solution
This is expected behavior since we cannot combine aggregate and non-aggregate SQL functions in the same formula definition. For example, if you create a formula using an aggregate function, then all the functions in the definition must either be aggregate functions or listed in a GROUP_BY clause. This is documented in SuiteAnswers 10101.
Here's the revised formula that would work:
Learn how to Refer A Member | Earn the Answer Accepter Badge | Be the Content Creator of the Quarter | Vote for the content you want to see!
