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: 
Anonymous
Not applicable

how to represent a percentage and its complement in a pie chart of same resource as in the following explanation

I have a data table as follows

|---------------|----------------------|----------------------------|---------------|

|  task_id   |   task_name   |   resource_Name |   Status

|---------------|----------------------|----------------------------|---------------|

|-----  1 -----|----   task 1  ----|--------- John  ---------|-- ontime --|

|-----  2 -----|----   task 2  ----|--------- John  ---------|---- late ----|

|-----  3 -----|----   task 3  ----|--------- John  ---------|---- late ----|

|-----  4 -----|----   task 4  ----|--------- John  ---------|-- ontime --|

|-----  5 -----|---  Z Task 1 ---|--------- Adam ---------|-- ontime --|

|-----  6 -----|--- Z Task 2  ---|--------- Adam ---------|-- ontime --|

|----  7 ------|--- Z Task 3  ---|--------- Adam ---------|-- ontime --|

|-----  8 -----|--- Z Task 4  ---|--------- Adam ---------|---- late ----|

|-----  9 -----|---  V Task 1 ---|--------- Scott ---------|---- late ----|

|---- 10 -----|--- V Task 2 ----|--------- Scott ---------|---- late ----|

|----- 11 ----|--- V Task 3  ---|--------- Scott ---------|-- ontime --|

|---- 12 -----|--- V Task 4 ----|--------- Scott ---------|---- late ----|

|---- 13 -----|--- V Task 5  ---|--------- Scott ---------|-- ontime --|

|---- 14 -----|--- Th-Task 1---|--------- Emily ---------|-- ontime --|

|---- 15 -----|--- Th-Task 2---|--------- Emily ---------|-- ontime --|

|---- 16 -----|--- Th-Task 3---|--------- Emily ---------|-- ontime --|


I am trying to count ontime tasks aginst late tasks for every resource_name in a pie chart as follows and the selected resource from a selection pane


John 50% ontime , 50 late

Adam 75% ontime , 25% late

Scott 40% ontime , 60% late

Emily 100% ontime, 0% late


I want for example to select John so the pie chart view the value of John progress only,  50% and 50% or select Scott so the pie chart change to Scott's progress values 40% and 60%


please help.




1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hey Shaima,

Try setting up the pie chart as described below;

Dimension = Status

Measure = Count([Task ID]): This should give you the percentage of each status per resource selected,

Hope this helps

View solution in original post

5 Replies
Not applicable
Author

folow example

Anonymous
Not applicable
Author

I am using Qlik Sense not Qlik View , all my apps are .qvf , this file is not working

Not applicable
Author

Dimension (resource_Name)

expression: =Count({<Status={'ontime'}>} task_id)/Count(task_id)

Anonymous
Not applicable
Author

Hey Shaima,

Try setting up the pie chart as described below;

Dimension = Status

Measure = Count([Task ID]): This should give you the percentage of each status per resource selected,

Hope this helps

Anonymous
Not applicable
Author

Thanks, your idea is right and worked