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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
jisephcirspy
Contributor III
Contributor III

Use two functions as measures for pie chart?

I want to use two measures for my pie chart:

=count(free)
=count(used)

Those should be the two parts of the pie chart.

Can you help me with that?

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

@jisephcirspy 

Dim : =Valuelist('free', 'used')

Exp (angle) : =Pick(Match(Valuelist('free','used'),'free','used'), count(free), count(used))

View solution in original post

2 Replies
tresB
Champion III
Champion III

@jisephcirspy 

Dim : =Valuelist('free', 'used')

Exp (angle) : =Pick(Match(Valuelist('free','used'),'free','used'), count(free), count(used))

jisephcirspy
Contributor III
Contributor III
Author

@tresBit works!!! thanks!!