March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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
Solved! Go to Solution.
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.
Best Regards,
Cherry
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.
Best Regards,
Cherry
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?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
165 | |
116 | |
63 | |
57 | |
50 |