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: 
Not applicable

Hide Rows based on expression in a Straight Table

Hi,

I have a straight table with 7 dimensions and 5 expressions. I want to hide rows of the straight table based on 1 expression(its amount > 10) How can I achieve this. I only want to see rows where the expression amount is greater than 10.

Really appreciate any help.

Labels (1)
12 Replies
francisvandergr
Partner - Creator II
Partner - Creator II

Here you have an example. If you need something else please let us know by your example

Not applicable
Author

mmonfort
Creator
Creator

I had something similar as well - I had 2 expressions that needed conditions on them.

If I were you I'd write it like this

Expression 1:

if(sum(Amount)> 10,
if(sum(Profit)> 2,
sum(Amount) ))

Expression 2:

if(sum(Amount)> 10,
if(sum(Profit)> 2,
sum(Profit)))

Does that work for you?