Forum Discussion
tmyasoutov
3 years agoFrequent Visitor
Measure to DIVIDE two columns with filtered values
Hey everyone, I'm struggling to understand how to create a measure for a gauge/KPI visual for my report, having an execution ID (snag on product) and case name (production units inspected). I...
- 3 years ago
Hi tmyasoutov ,
maybe so
Measure = COALESCE(DIVIDE(COUNT(Table[Execution ID]),DISTINCTCOUNT('Table'[Case Name])),0)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
mangaus1111
Solution Sage
3 years agoHi tmyasoutov ,
maybe so
Measure = COALESCE(DIVIDE(COUNT(Table[Execution ID]),DISTINCTCOUNT('Table'[Case Name])),0)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
tmyasoutov
3 years agoFrequent Visitor
Yes, just checked, it works! Thank you mangaus1111 !