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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Limit a straight table to not show certain rows

I have a table where I'm trying to restrict rows and enabling conditions doesn't seem to do the trick for me.  I can simplyfy the data for the purpose of an example here.

statussum(lead_count)
Accepted1416
Review37
Ineligible193
Declined186
Pending1

If I have the data above, and I only want to show rows where the lead_count > 1, how would I do that?  I tried to enable a lead_count > 1 condition within the dimension and expression, but neither technique worked.   Any help would be appreciated.

Thanks.

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

You can use a calculated dimension: if(aggr(sum(lead_count),status)>1,status)

or a set analysis expression: count({<status={'=count(lead_count)>1'}>} status)

or you can use Dimension limits and use the option Show only values that are Greater Than 1 exact amount

See attached example.


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

You can use a calculated dimension: if(aggr(sum(lead_count),status)>1,status)

or a set analysis expression: count({<status={'=count(lead_count)>1'}>} status)

or you can use Dimension limits and use the option Show only values that are Greater Than 1 exact amount

See attached example.


talk is cheap, supply exceeds demand
Not applicable
Author

Thanks!  That worked.