cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
harirao
Post Partisan
Post Partisan

Calculating Average Total and Percentage Total

Hi All,

I am working on a Matrix table looking for solution, how find Average total & percentage from Feb to Jun, based on this i have another Donut Chart


Avg.PNG

 

Donut chart using Total Average from Feb to Jun

Donut.PNG

Thank you

 

Regards,

1 ACCEPTED SOLUTION
RicoZhou
Community Support
Community Support

Hi @harirao ,

 

I think you in data model [Feb-23]...[Jun-23] should all be columns as below.

RicoZhou_0-1675150629733.png

This will make our calculation difficult and I suggest you to try UNPIVOT function to transform your table.

Select [Item.[DP Manager]] column and unpivot other columns. Then remove blank values in [Value] column.

For reference: Unpivot columns - Power Query | Microsoft Learn

RicoZhou_1-1675151264452.png

Then average measure shoule be as below.

Count = CALCULATE(COUNT('Table'[Value]))
Percentage of Total =
VAR _Total =
    CALCULATE ( [Count], ALLEXCEPT ( 'Table', 'Table'[Item.[DP Manager]]] ) )
RETURN
    DIVIDE ( [Count], _Total )

Result is as below.

RicoZhou_2-1675151275348.png

 

Best Regards,
Rico Zhou

 

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

1 REPLY 1
RicoZhou
Community Support
Community Support

Hi @harirao ,

 

I think you in data model [Feb-23]...[Jun-23] should all be columns as below.

RicoZhou_0-1675150629733.png

This will make our calculation difficult and I suggest you to try UNPIVOT function to transform your table.

Select [Item.[DP Manager]] column and unpivot other columns. Then remove blank values in [Value] column.

For reference: Unpivot columns - Power Query | Microsoft Learn

RicoZhou_1-1675151264452.png

Then average measure shoule be as below.

Count = CALCULATE(COUNT('Table'[Value]))
Percentage of Total =
VAR _Total =
    CALCULATE ( [Count], ALLEXCEPT ( 'Table', 'Table'[Item.[DP Manager]]] ) )
RETURN
    DIVIDE ( [Count], _Total )

Result is as below.

RicoZhou_2-1675151275348.png

 

Best Regards,
Rico Zhou

 

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

Helpful resources

Announcements
T-Shirt Design Challenge 2023

Power BI T-Shirt Design Challenge 2023

Submit your creative T-shirt design ideas starting March 7 through March 21, 2023.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

March Events 2023A

March 2023 Events

Find out more about the online and in person events happening in March!

Top Solution Authors