cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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
v-rzhou-msft
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
v-rzhou-msft
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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors