Forum Discussion
Measure to DIVIDE two columns with filtered values
- 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.
Hi tmyasoutov ,
try with this
- tmyasoutov3 years agoFrequent Visitor
Understood, thank you mangaus1111 ! Any idea how to correctly add IF(ISBLANK) = 0 within this measure?
- mangaus11113 years ago
Solution Sage
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.
- tmyasoutov3 years agoFrequent Visitor
Yes, just checked, it works! Thank you mangaus1111 !