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.
Summarized Saved Search Formula Field Skews data
I have a perfectly working project task saved search whose purpose is to show me how many employees I have on each project grouped by the Revenue Stream (custom segmentation field) on the project. To enable the grouping I used formula:
case when {job.custentity_hw_revenuestream} = 'Core' then {custevent_hw_resource} else null end
case when {job.custentity_hw_revenuestream} = 'PPI' then {custevent_hw_resource} else null end
Where: {job.custentity_hw_revenuestream} = the Revenue Stream field.
{custevent_hw_resource} = employee.
For some reason before any grouping the employee numbers are correct for both Revenue Streams. But soon as I add groupings then the employee count for Revenue Stream = Core is wrong. They are higher. When Revenue Stream = PPI the employee counts remains the same and is correct. Does anyone know why adding summary groupings skews my data for only one column yet the formula format is the same?