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

Apply filter on Table only

I have a data set containing Sales by date and transaction #.

I want to build a table containing only sales which is over $1000. How can I add a filter to show only transactions with sales over $1000?

Please help.

Thanks,

Amit

1 Solution

Accepted Solutions
sunny_talwar

May be use a set analysis like this

Sum({<[Transaction_ID] = {"=Sum(Sales) > 1000"}>}Sales)

View solution in original post

2 Replies
sunny_talwar

May be use a set analysis like this

Sum({<[Transaction_ID] = {"=Sum(Sales) > 1000"}>}Sales)

Anonymous
Not applicable
Author

Thank you.. that did the trick!