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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
timanshu
Creator III
Creator III

How to write Greater than symbol in set analysis

I have a table with bucket field and sales field ->

Bucket    Sales

10-20     100

20-40      30

40-50      50

>50         120

I want to show sale of only >50 in a chart through set analysis. How can I do. Since writing > in set analysis , >50 as whole is not considered as a field value.

Please help.

17 Replies
arvind_patil
Partner - Specialist III
Partner - Specialist III

Or else Provide sample app.

vinieme12
Champion III
Champion III

Try

=sum({<Bucket={'%50'}> }  Sales)


or


=sum({<Bucket={$('>50')}> }  Sales)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
timanshu
Creator III
Creator III
Author

Script Generated field.

timanshu
Creator III
Creator III
Author

Thanks. But I want to get rid of creating new field.

bharani8
Creator III
Creator III

Then in ur Bucket.. instead of ">50".. Use "Greater than 50"

Anil_Babu_Samineni

May be share Excel data? I thought you created Bucket Field In script.

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
tresesco
MVP
MVP

Then I guess, Sales is also coming aggregated from script. If so, you may try like:

=sum({<Sales={">50"}> }  Sales)

Or,

=sum({<Bucket={"=Sum(Sales)>50"}> }  Sales)

arasaraja_cts
Partner - Contributor III
Partner - Contributor III

Hi ,

PFA .

Thanks

Raja