Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
In my QlikView document I load customers and addresses. Sometimes customers do have more then one address.
The usual data display would be:
| Customer | Address |
|---|---|
| CUSTOMER1 | ADRESS1 |
| CUSTOMER1 | ADRESS2 |
I would like to display the data as following:
| Header 1 | Header 2 |
|---|---|
| CUSTOMER1 | ADRESS1, ADRESS2 |
Any thoughts on this?
Kind regards,
Henco
Try a
=concat(Address, ', ')
e.g. in a table chart.
Regards,
Stefan
Thanks a lot Stefan!