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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Expression Help

Hello,

I am looking to return a set of values that have an Transaction Type (dimension) = 'Airfare' and that the on the transaction was Spend > 600 within a a text object. I am getting caught up on the expression right now.

4 Replies
robert_mika
Master III
Master III

Could you share your data and desired results?

Feeling Qlikngry?

How To /Missing Manual(18 articles)

MK_QSL
MVP
MVP

=COUNT({<[Transaction Type] = {'Airfare'}, Speed = {">60"}>}Value)

or

=SUM({<[Transaction Type] = {'Airfare'}, Speed = {">60"}>}Value)

Not applicable
Author

Thanks Manish that should do it, still working on my set analysis.

pratap6699
Creator
Creator

=sum({$<type={'airfare'},speed={'>600'}>}planes)

it returns the total planes which contain only airfare type with their speed morethan 600