Forum Discussion
webbj
Helper I
4 years agoMultiple 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...
- 4 years ago
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)" } )
DataInsights
Super User
4 years ago
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)"
}
)webbj
Helper I
4 years agoYou sir are a genius, thankyou it worked 🙂