Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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?

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!!