Forum Discussion
webbj
4 years agoHelper 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...
- 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
4 years agoSuper 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)"
}
)