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.
Results of 2 saved search case statements to be displayed on one line?
I have 2 case statements like below. When I run the search, they end up on 2 lines:
Item Reserved USA
123 25
123 10
What I want is 1 line:
Item Reserved USA
123 25 10
CASE WHEN {item.inventorylocation}='Reserved' THEN {item.locationquantityavailable}) ELSE 0 END
CASE WHEN {item.inventorylocation}='USA' THEN {item.locationquantityavailable}) ELSE 0 END
Any idea how to do that?
0