Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team
please find below image and is it possible to create in qliksense.
Hi,
If you want to concatenate the field value, we have two way
1. Create a field in script
Load Country,
Concat(Distinct Sate,',') as ConbineState
From Table
Group By Country;
2. In Pivot Calculated Dimension is not working, for that you have to create a measures
Concat(Distinct Location,',')
May it help.