Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
Saved Search Formula to extract string from Concatenated fields
Hello,
I have a saved search for Projects, where I am also extracting Unique Sales Order and SO Total Amount information. Formula used for the same
REPLACE(NS_CONCAT(DISTINCT(CASE WHEN {transaction.type} = 'Sales Order' THEN ({transaction.number} || ':' || {transaction.totalamount} ) END)),',','<br>
')
the same is extracted in 2 different columns SO and SO Amount, in case of 2 SOs with same amount, the amount column shows only 1 amount. So decided to concatenate SO and SO Amount and then extract the unique records. This gives following results:
TESTSO0001:600000<br>TESTSO0002:300000
As user wants to see SO and SO Amount in 2 separate columns with unique SO and associated amount. For amount column, is there a way to extract 2 amount fields like