I have a parameter that can be multiple values. If I use the following formula, I can list the parameters separated by a comma:
join({?Product}, ", "
My issue is this - I have multiple companies associated with an Product Id (one to many relationship). I'm trying to get the Product Id to list once and all the companies to be separated by a comma. Can this be done?
This is what I get:
ID Company
--------------------
11 IBM
11 GE Capital
11 Honeywell
I want this:
ID Company
---------------------
11 IBM, GE Capital, Honeywell
Any info would be appreciated!
join({?Product}, ", "
My issue is this - I have multiple companies associated with an Product Id (one to many relationship). I'm trying to get the Product Id to list once and all the companies to be separated by a comma. Can this be done?
This is what I get:
ID Company
--------------------
11 IBM
11 GE Capital
11 Honeywell
I want this:
ID Company
---------------------
11 IBM, GE Capital, Honeywell
Any info would be appreciated!