Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Percent of total with grouping

Hello, 


See the image below of the table I have and table/output I want. Basically I want to group by assignee and show the percentage of processes owned by the assignee that are done. How can I do this?

 

Thx!!

 

sp91_0-1675272575748.png

 

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @Anonymous 

 

You can try the following methods.

 

Measure = 
Var _N1=CALCULATE(COUNT('Table'[Assignee]),FILTER(ALL('Table'),[Status]="Done"&&[Assignee]=SELECTEDVALUE('Table'[Assignee])))
Var _N2=CALCULATE(COUNT('Table'[Assignee]),FILTER(ALL('Table'),[Assignee]=SELECTEDVALUE('Table'[Assignee])))
Return
DIVIDE(_N1,_N2)

 

Table:

 

New table = SUMMARIZE('Table','Table'[Assignee],"Percent_Done",[Measure])

 

vzhangti_0-1675305796337.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-zhangti
Community Support
Community Support

Hi, @Anonymous 

 

You can try the following methods.

 

Measure = 
Var _N1=CALCULATE(COUNT('Table'[Assignee]),FILTER(ALL('Table'),[Status]="Done"&&[Assignee]=SELECTEDVALUE('Table'[Assignee])))
Var _N2=CALCULATE(COUNT('Table'[Assignee]),FILTER(ALL('Table'),[Assignee]=SELECTEDVALUE('Table'[Assignee])))
Return
DIVIDE(_N1,_N2)

 

Table:

 

New table = SUMMARIZE('Table','Table'[Assignee],"Percent_Done",[Measure])

 

vzhangti_0-1675305796337.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hi, yes this does the trick!! Sorry for the delayed response, I was on vacation.

smpa01
Super User
Super User

@Anonymous 

 

Measure= 
DIVIDE (
    CALCULATE (
        COUNTROWS ( t1 ),
        FILTER ( VALUES ( t1[status] ), t1[status] = "Done" )
    ),
    COUNTROWS ( t1 )
)
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs
Anonymous
Not applicable

I did a summarizecolumns  (code below) which gives me the output (screenshot below), but still I don't know how to divide row 1 (2) by 5 (sum of row 1 and 2)...the total of bob's items, and so on....

 

table2 =
SUMMARIZECOLUMNS (
table[assignee], table[status],
"Count", CALCULATE (
COUNT ( table[process])
)

)

 

 

 

sp91_0-1675277123500.png

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.