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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

summarise filter formila DAX error

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])))
  
1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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

Anonymous
Not applicable

Xiaoxin Sheng

 

brilliant many  thanks.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors