Forum Discussion
Gm0
6 years agoFrequent Visitor
Evaluate IF based on two values in same column
Hello Community, I have a issue I can't wrap my head around... which I think is simple... but maybe not. I have a column with EP numbers A second with countries in which that EP is registred. ...
- 6 years ago
Hi Gm0 ,
I created a calculated column to implement it. You could have a try.
Column = var d = CALCULATE(DISTINCTCOUNT('Table'[Country]),ALLEXCEPT('Table','Table'[EP])) return IF(d>1, "True", BLANK())Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Kudos are nice too.
v-xuding-msft
Community Support
6 years agoHi Gm0 ,
I created a calculated column to implement it. You could have a try.
Column =
var d = CALCULATE(DISTINCTCOUNT('Table'[Country]),ALLEXCEPT('Table','Table'[EP]))
return
IF(d>1, "True", BLANK())
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Kudos are nice too.
Gm0
6 years agoFrequent Visitor
Thanks all for your input!