Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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)"})
)
Solved! Go to Solution.
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)"
}
)
Proud to be a Super User!
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)"
}
)
Proud to be a Super User!
You sir are a genius, thankyou it worked 🙂
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
85 | |
66 | |
51 | |
45 |
User | Count |
---|---|
216 | |
89 | |
82 | |
66 | |
57 |