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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set Analysis Query in Gauge Chart

Hi All,

I have a demo table like below. Now I have a list box that shows month based on KPIDate as Jan, Feb etc. I have taken a gauge chart and want to display a number (style LED format).

   

KPIDateClaim_TTLCountClaim
20150111200
20150101300
20150101400
20150111500
20150211600
20150211700
20150201800
20150201900
201503011000
201503111100
201503111200
201504111300
201504011400
201504011500

I have a requirement to show count when a month is selected, only where Claim_TTL is 1. So if Jan is selected, then it should show the below

KPIDateClaim_TTLCountClaim
20150111200
20150111500

I am writing this expression in the gauge chart expression

Sum({<Claim_TTL= {1}} Count)

But this always return 0. Can you please help me with this expression? Basically I want to show the count here which will be 2 in Jan case.

1 Solution

Accepted Solutions
eduardo_sommer
Partner - Specialist
Partner - Specialist

There is a > missing in your expression

Sum({<Claim_TTL= {1}>} Count)

Eduardo

View solution in original post

2 Replies
eduardo_sommer
Partner - Specialist
Partner - Specialist

There is a > missing in your expression

Sum({<Claim_TTL= {1}>} Count)

Eduardo

Not applicable
Author

Thanks Eduardo. Fixed it.

Set Analysis has very confusing expression language.