Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there a way to do a listagg in Qlik Sense? Or whatever the equivalent is to listagg in pl/sql...
A similar question was asked a while back but I can't get it to work for me.
You need to use the above as an expression or use it like this for calculated dimension
Aggr(Concat(FieldName, '/', FieldName2), <DimensionNameHere>)
Replace DimensionNameHere with the dimension with the dimension over which you want to Concat FieldName.
That works. Thanks so much!