Forum Discussion
Covington
Helper I
7 years agoFind Differences in column
I have a set of data that I am querying out of a database that has the following fields: Node Tag Name Address There are multiple nodes that *may* have a Unique Address. Mostly, the Add...
- 7 years ago
Hi Covington
Not sure if I understood the requirement, but try this code, it will return true if there is more then one address variation per tag.
Column = CALCULATE( DISTINCTCOUNT( YourTable[Address] ), ALLEXCEPT( YourTable, YourTable[Tag] ) ) > 1Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
Mariusz
Community Champion
7 years agoHi Covington
Not sure if I understood the requirement, but try this code, it will return true if there is more then one address variation per tag.
Column =
CALCULATE(
DISTINCTCOUNT( YourTable[Address] ),
ALLEXCEPT( YourTable, YourTable[Tag] )
) > 1
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.

Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.