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 11, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 30 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
How do I divide the summary's evaluated value in formula instead of it's row?
Hello, I am creating a Saved Search using formulas to divide two Transaction Body fields containing a formula.
Let's call this Field A:
ABS(CASE WHEN {quantity}<0 THEN {quantity} ELSE 0 END)Let's call this Field B:
CASE WHEN {quantity}>0 THEN {quantity} ELSE 0 ENDHere is what I am attempting to do with these two formulas:
Field A / Field B
This is the summary page of my item saved search:
As you may have figured from the given two formulas, I would receive an error because when I click the Inventory Item, the transactions that make up this number is always divided by zero. The zero is entered from the ELSE statement. Field A is a positive quantity integer of sold items. Field B is a negative quantity integer turned into a positive number to indicate items returned.
2