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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
SebKaliVith
Regular Visitor

Summarize table

Hi all,

 

I need your help for an easy trick :

 

I have this table :

 

 

Table1

Hospital      Step      Progress

A                 Step1      50%

A                 S tep2      30%

A                 Step3      10%

B                 Step1      10%

B                 Step2       8%

B                 Step3       6%

C                 Step1       1%
C                 Step2       0%

C                Step3        0%

 

I would like to obtain this table :

 

Table 2

Hospital       Average

A                     30%

B                      8%

C                    0.33% 

 

How can i go from table 1 to table 2 ?

 

Thanks a lot !

 

Regards,

Séb

1 ACCEPTED SOLUTION
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @SebKaliVith,

 

You could try this formula below.

 

Table 2 =
SUMMARIZE (
    'Table',
    'Table'[Hospital],
    "average", CALCULATE (
        AVERAGE ( 'Table'[Progress] ),
        FILTER ( 'Table', 'Table'[Hospital] = MAX ( 'Table'[Hospital] ) )
    )
)

Here is the output you expected.

 

Capture.PNG

 

Best  Regards,

Cherry

Community Support Team _ Cherry Gao
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-piga-msft
Resident Rockstar
Resident Rockstar

Hi @SebKaliVith,

 

You could try this formula below.

 

Table 2 =
SUMMARIZE (
    'Table',
    'Table'[Hospital],
    "average", CALCULATE (
        AVERAGE ( 'Table'[Progress] ),
        FILTER ( 'Table', 'Table'[Hospital] = MAX ( 'Table'[Hospital] ) )
    )
)

Here is the output you expected.

 

Capture.PNG

 

Best  Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
jthomson
Solution Sage
Solution Sage

Just make a measure that calculates the average of the progress column, then drop that and hospital into a table

Hello,

 

Thank you for your answer !

But i obtain this table :

 

TABLE 2

Hospital     AVerage

A                    19%

B                     19%

C                     19%

 

I obtain the average of all my hospital progress, but i would like the average for each hospital.

 

 

Any idea ?

 

Best,

Séb

How have you worded your measure?

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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