Hi Guys, I want to concat and show all the sales t...
# suiteanalytics
n
Hi Guys, I want to concat and show all the sales team members in one column(like if there are 3 people in sales team of an Opportunity then I want to show all three names in one row only) in a saved search! How can I achieve it! kindly let me know!!
g
Try `NS_CONCAT(,field}`a formula text
Hmm.. my answer didn’t go through properly,
NS_CONCAT({field}, ', ')
Use Min summary type
Sorry, function is:
NS_CONCAT({field})
it automatically puts commas in there for you.
m
If you want control of the delimiter use
LISTAGG
instead
n
Hi, This column is not adding anything in the result I can't even see the column !
m
Is it a grouped search?
n
nop
m
It will need to be
n
I have to group all the columns?
this is how my search results looks like
I tried grouping first two results but it is throwing error : something went wrong!
m
Group by document number and add summary columns such as min/max to any other columns you want to show without drilling down
n
okay cool, thanks!