Reputation: 13
I'm trying to create a saved search in NetSuite that shows me the quantity of items available at each location.
The formulas I'm using are
"CASE WHEN {inventorylocation} = 'Location1' THEN {locationquantityonhand} ELSE 0 END"
, etc. I have entered a formula for each location.
The result it's giving me is:
Is there any way that I can get the saved search to show this instead?
Thank you!
Upvotes: 1
Views: 5691
Reputation: 3783
You need to use Grouping to achieve this.
In the results tab of your Saved Search, there is a Summary Type field next to each column. Changing 'Item #' to 'GROUP' and the formula fields to "MAXIMUM" should result in the output you want.
Upvotes: 1