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: 
VaishnaviMogal2
Contributor III
Contributor III

ignore particular selection in graph

Hi,

I am using below expression to show mileage charged.

Sum(Aggr(Max(If(range_gained > 9000, 9999 - range_gained, range_gained)),vinheader,charge_session))

I have to ignore the selection of charge session made in another graph for that I am trying to use {$<charge_session=>} but it's not giving result . how can ignore it in graph. please suggest something.

Thanks!

Labels (5)
1 Solution

Accepted Solutions
marcus_sommer

Try it with the following logic: sum({ Set } aggr({ Set } max({ Set } Field), Dim))

View solution in original post

2 Replies
marcus_sommer

Try it with the following logic: sum({ Set } aggr({ Set } max({ Set } Field), Dim))

VaishnaviMogal2
Contributor III
Contributor III
Author

@marcus_sommer , Thanks!

it worked perfectly!