Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
this is input
| Customer ID | Location |
| 101 | India |
| 101 | USA |
| 102 | USA |
| 103 | UK |
| 104 | Germany |
| 104 | UK |
| 104 | India |
i want output like that o/p:
| Customer ID | Location |
| 101 | India,USA |
| 102 | USA |
| 103 | UK |
| 104 | Germany,UK,India |
please let me know do this output , can u provide the script?
Regards,
Satya
Satya,
Use the concat() function as an expression in your chart.
concat(Location,', ')
Regards.
Satya,
Use the concat() function as an expression in your chart.
concat(Location,', ')
Regards.
Hi,
really great, now it is working thanks for your inputs.
Regards,
Satya
try this:
load
[CUSTOMER ID],
concate (Location,', ') as ConcatLocation
resident loadedtable;
Regards