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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
akpofureenughwu
Creator III
Creator III

How to create a pie chart without dimension on qliksense

Good day sir,

I have a set of data and I wish you develop a pie chart with two measures and no dimension.

Sample data is attached

The pie chart is to solve a relationship between uptime and downtime

I know this is possilbe in qlikview. how about qliksense?

Regards

1 Solution

Accepted Solutions
OmarBenSalem
Partner - Champion II
Partner - Champion II

As dimension :

=ValueList('Uptime','Downtime')

as a measure:

if(ValueList('Uptime','Downtime')='Uptime',Count({<Uptime={1}>}Uptime),

if(ValueList('Uptime','Downtime')='Downtime',count({<Downtime={1}>}Downtime)))

result:

Capture.PNG

View solution in original post

4 Replies
OmarBenSalem
Partner - Champion II
Partner - Champion II

As dimension :

=ValueList('Uptime','Downtime')

as a measure:

if(ValueList('Uptime','Downtime')='Uptime',Count({<Uptime={1}>}Uptime),

if(ValueList('Uptime','Downtime')='Downtime',count({<Downtime={1}>}Downtime)))

result:

Capture.PNG

akpofureenughwu
Creator III
Creator III
Author

Thank you omarbensalem

Tyler_Waterfall
Employee
Employee

Amazing - I found this first hit to my question and it worked as hoped. Thanks @OmarBenSalem !

Amit_Kakkad_PD
Contributor II
Contributor II

Great solution! Thanks @OmarBenSalem