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
webbj
Helper I
Helper I

Multiple Filter Average Calculation

Hi all, 

 

I am trying to calculate the average based off of multiple filters, beneath are some examples of what I have been trying however when displaying on 'card' it'll display as (blank). Could someone suggest where I am going wrong or any more ideas? Any help would be appreciated, thankyou!

 

Measure = AVERAGEX(FILTER('Combined','Combined'[Type]={"CT - Change Request (10)", "CT - General Support (5)", "CT - New Implementation (10)", "CT - Technical Issue/Fault (10)"}),'Combined'[Response Time (Days)])

Measure = CALCULATE(AVERAGEX(FILTER('Combined','Combined'[Type]={"CT - Change Request (10)", "CT - General Support (5)", "CT - New Implementation (10)", "CT - Technical Issue/Fault (10)"}),'Combined'[Response Time (Days)]))

Measure = CALCULATE(
    AVERAGE(Combined[Response Time (Days)]),
	FILTER(Combined, Combined[Type] = "CT - Change Request (10)"),
        FILTER(Combined, Combined[Type] = "CT - General Support (5)"),
        FILTER(Combined, Combined[Type] = "CT - New Implementation (10)"),
        FILTER(Combined, Combined[Type] = "CT - Technical Issue/Fault (10)")
)

Measure = CALCULATE(
    AVERAGE(Combined[Response Time (Days)]),
    FILTER('Combined','Combined'[Type]={"CT - Change Request (10)", "CT - General 
    Support (5)", "CT - New Implementation (10)", "CT - Technical Issue/Fault (10)"})
)

 

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@webbj,

 

Try this measure:

 

Measure =
CALCULATE (
    AVERAGE ( Combined[Response Time (Days)] ),
    Combined[Type]
        IN {
        "CT - Change Request (10)",
        "CT - General Support (5)",
        "CT - New Implementation (10)",
        "CT - Technical Issue/Fault (10)"
    }
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
DataInsights
Super User
Super User

@webbj,

 

Try this measure:

 

Measure =
CALCULATE (
    AVERAGE ( Combined[Response Time (Days)] ),
    Combined[Type]
        IN {
        "CT - Change Request (10)",
        "CT - General Support (5)",
        "CT - New Implementation (10)",
        "CT - Technical Issue/Fault (10)"
    }
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




You sir are a genius, thankyou it worked 🙂

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.