Forum Discussion
SebKaliVith
8 years agoRegular 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 ...
- 8 years ago
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
v-piga-msft
8 years agoResident 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.
Best Regards,
Cherry