Forum Discussion
Ricardo77
4 years agoHelper II
Find columns from one table in another table
Hello, i'm trying to find columns of 1 table on a 2nd table, but i'm struggling because i can't seem to use distinct or values with text operators (2nd column can be slightly different, as you'll se...
- 4 years ago
Anonymous
Then use
= SUMX ( VALUES ( table1[Column1] ), IF ( SUMX ( VALUES ( table2[Column1] ), IF ( CONTAINSSTRING ( table2[Column1], table1[Column1] ), 1 ) ) > 0, 1 ) )