Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
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!