Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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:
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:
Thank you omarbensalem
Amazing - I found this first hit to my question and it worked as hoped. Thanks @OmarBenSalem !
Great solution! Thanks @OmarBenSalem