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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
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
tresesco
MVP
MVP

@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
tresesco
MVP
MVP

@jisephcirspy 

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

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

jisephcirspy
Contributor III
Contributor III
Author

@tresescoit works!!! thanks!!