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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
maxduff59
Helper II
Helper II

Calculate AVERAGEX with a Filter with multiple conditions

I would like to compute an average by filtering a table with two conditions but, as a newbie, I do not know how to put an IF Condition inside a Filter. Because I know how to compute if I have one filter :

 

CALCULATE( AVERAGEX(
    FILTER( Table, [Duration] >60 ) ) )

 

But I would like something like that : 

CALCULATE( AVERAGEX(
    FILTER( Table, IF Position = "Position_A" → [Duration] >50 ELSE [Duration] > 70) ) )

 

Here is my example : 

Capture d’écran 2022-11-30 à 11.37.32.png

 

Thanks in advance for your help and your time

1 ACCEPTED SOLUTION
v-jialluo-msft
Community Support
Community Support

Hi @maxduff59 ,

 

Please follow these steps:

(1) Create a new measure

 

AVG = 
VAR _VALUE =
    IF ( MAX ( 'Table'[Position] ) = "Position A", 50, 70 )
RETURN
    CALCULATE (
        AVERAGE ( 'Table'[Distance] ),
        FILTER (
            ALL ( 'Table' ),
            (
                'Table'[Position] = MAX ( 'Table'[Position] )
                    && 'Table'[Duration] > _VALUE
            )
        )
    )

 

(2)Final output

vjialluomsft_0-1669862450999.png

 

Best Regards,

Gallen Luo

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

1 REPLY 1
v-jialluo-msft
Community Support
Community Support

Hi @maxduff59 ,

 

Please follow these steps:

(1) Create a new measure

 

AVG = 
VAR _VALUE =
    IF ( MAX ( 'Table'[Position] ) = "Position A", 50, 70 )
RETURN
    CALCULATE (
        AVERAGE ( 'Table'[Distance] ),
        FILTER (
            ALL ( 'Table' ),
            (
                'Table'[Position] = MAX ( 'Table'[Position] )
                    && 'Table'[Duration] > _VALUE
            )
        )
    )

 

(2)Final output

vjialluomsft_0-1669862450999.png

 

Best Regards,

Gallen Luo

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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