Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
jas0012qlik
Contributor III
Contributor III

combining multiple values into one field

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.

11 Replies
sunny_talwar

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.

jas0012qlik
Contributor III
Contributor III
Author

That works. Thanks so much!