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

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
chibi
Creator
Creator

Set Analysis not displaying the value needed

I have a set analysis to show the value based on a ticket status, but instead of showing the value it's showing 0 

chibi_0-1634009224970.png

 

1 Solution

Accepted Solutions
Vegar
MVP
MVP

your expression will only work of you make sure that each row/bar/point only holds association to one tkt_status value.

It is probably a better approach to use set analysis. Try this expression:

=sum({<tkt_status={1}>}pay_or_cancel_amt)

View solution in original post

2 Replies
Vegar
MVP
MVP

your expression will only work of you make sure that each row/bar/point only holds association to one tkt_status value.

It is probably a better approach to use set analysis. Try this expression:

=sum({<tkt_status={1}>}pay_or_cancel_amt)

chibi
Creator
Creator
Author

Thank you so much! This works!