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: 
silvia_assuncao
Creator
Creator

Total Sum only if one item selected

Hi Everyone,

I have this tab, and I want it to show the total sum only if I select one user (resource). is it possible?

thanks

3 Replies
m_woolf
Master II
Master II

You can put:  GetSelectedCount(Resource)=1 in the Conditional show of your chart. Then add a Resource listbox.

sunny_talwar

Check out this expression

If(GetSelectedCount(Resource) <> 1, If(Dimensionality() > 0, Sum([% Resource])), Sum([% Resource]))

silvia_assuncao
Creator
Creator
Author

great!

thanks