Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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

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

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