Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
ziabobaz
Creator III
Creator III

Dimension with set analysis

Hi,

I have two dimensions:

Screenshot_7.jpg

I want to build a table with Source as dimension.

However, I want to show only those Fileds, where Channel=Paid.

something like

={<Channel={'Paid'}>} source

I know I can put a Channel filter on the dashboard > choose 'Paid' as the table will show me the numbers.

My aim is to limit the clicks so the table shows 'Paid' Sources right away.

Thank you!

Gleb.

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

Try this as your dimension for Source

= Aggr(Only({< Channel = {'paid'} >} Source), Source, Channel)

View solution in original post

3 Replies
vishsaggi
Champion III
Champion III

Try this as your dimension for Source

= Aggr(Only({< Channel = {'paid'} >} Source), Source, Channel)

groveliam
Creator
Creator

If the above doesn't work, you can try to just use a simple if statement. I do something similar in one of my tables. It would look like:

=if(Channel = 'Paid', Source)

Let me know if it does not work out, good luck!

ziabobaz
Creator III
Creator III
Author

Both of them work, thank you!