Forum Discussion
kasife
3 years agoHelper V
Count distinct with conditional
Hello people, Distinct count by ID considering column A greater than column B? Im using the following measure: CALCULATE(
DISTINCTCOUNT([Id]),
FILTER(
_table,
...
lbendlin
3 years agoSuper User
Try this
CALCULATE( DISTINCTCOUNT(_table[Id]), _table[A]>_table[B])