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: 
paulyeo11
Master
Master

The table display more then 100 row. I want to display those sales amount > 1000.

HI All

I have a table which display

Dimension :-

COMPANY

date

Expression :-

Sum(if(Month_n='1',sales))/Rate

The table display more then 100 row.  I want to display those sales amount > 1000.

May i know how to do it ?

Paul Yeo

1 Solution

Accepted Solutions
kaanerisen
Creator III
Creator III

Hi,

You can use this expression

sum(aggr(IF(Sum(if(Month_n='1',sales))/Rate>1000,Sum(if(Month_n='1',sales))/Rate),COMPANY,date))

and uncheck "Include zero velues" on Data handling menu of table properties.

Hope it helps.

View solution in original post

3 Replies
paulyeo11
Master
Master
Author

My QVF !

kaanerisen
Creator III
Creator III

Hi,

You can use this expression

sum(aggr(IF(Sum(if(Month_n='1',sales))/Rate>1000,Sum(if(Month_n='1',sales))/Rate),COMPANY,date))

and uncheck "Include zero velues" on Data handling menu of table properties.

Hope it helps.

paulyeo11
Master
Master
Author

Apprecaite very much it work