Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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