Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Experts
is it possible to summarise data and filter the the summarise table to work out the sum of the filter data set i.e. similiar to what i am trying to achieve using DAX
STDEV.P( SUMMARIZE (filter ( 'Sheet1', Sheet1[OUTCOMETYPE]="Revised"), Sheet1[PRIMARYTOOUTCOMEYEARS] ), CALCULATE(SUM(Sheet1[PRIMARYTOOUTCOMEYEARS])))
Solved! Go to Solution.
Hi @Anonymous ,
You can create a measure with following formula to apply multiple aggregates on filtered records:
measure = STDEVX.P ( SUMMARIZE ( FILTER ( ALLSELECTED ( 'Sheet1' ), Sheet1[OUTCOMETYPE] = "Revised" ), [PRIMARYTOOUTCOMEYEARS], "Total", SUM ( Sheet1[PRIMARYTOOUTCOMEYEARS] ) ), [Total] )
Regards,
Xiaoxin Sheng
Hi @Anonymous ,
You can create a measure with following formula to apply multiple aggregates on filtered records:
measure = STDEVX.P ( SUMMARIZE ( FILTER ( ALLSELECTED ( 'Sheet1' ), Sheet1[OUTCOMETYPE] = "Revised" ), [PRIMARYTOOUTCOMEYEARS], "Total", SUM ( Sheet1[PRIMARYTOOUTCOMEYEARS] ) ), [Total] )
Regards,
Xiaoxin Sheng
Xiaoxin Sheng
brilliant many thanks.