Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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!