Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

concat function with a set expression

Hi,

My task is to display the name of the media which has a zero budget disregarding a user's selection in the field 'media'.

I tried this formula:

Concat({<Media = {"=aggr(sum( {<Media=>}[Budget]), Media)=0"}>} distinct Media, ',')

It doesn't work the way I need. It still takes into account a user's selection in the field 'media'.

How can I fix it?

Thank you in advance,

Larisa

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

=Concat({<Media=>}aggr(if(sum({<Media=>}Budget)=0,only({<Media=>}Media)),Media),',')

View solution in original post

2 Replies
MK_QSL
MVP
MVP

=Concat({<Media=>}aggr(if(sum({<Media=>}Budget)=0,only({<Media=>}Media)),Media),',')

Anonymous
Not applicable
Author

Thank you!