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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Filter data set in table

Hi,

I have a data model, with 2 types of ads: free and paid.

in the data model, I have a report thta shows all ads,

and a second report that shows revenues, clearly I need to show only the paid ads,

but what is the best way of doing this?

needs:

I don't want the user to use the report wrongly and show both types of ads

I want to present it in a straight table

1 Solution

Accepted Solutions
sunny_talwar

There is two ways I can think of doing this:

One would be a calculated dimension where you can use a if statement

If(ads = 'paid', yourDimension) and then you can suppress the null.

Alternatively, you can use set analysis in all your expressions:

{<ads = {'paid'}>}

I hope this helps.

Best,

Sunny

View solution in original post

4 Replies
arulsettu
Master III
Master III

hi,

try this

sum({<addtype={'paid'}>}amount)

sunny_talwar

Not sure what you requirement is? Do you want your revenue table to just show information related to paid ads only???

Anonymous
Not applicable
Author

Exactly

sunny_talwar

There is two ways I can think of doing this:

One would be a calculated dimension where you can use a if statement

If(ads = 'paid', yourDimension) and then you can suppress the null.

Alternatively, you can use set analysis in all your expressions:

{<ads = {'paid'}>}

I hope this helps.

Best,

Sunny