Hello everyone,
I want to create a Filter-Measure, that output "1", if two specific columns in my table have same values in the same row.
For example:
No. | Article | X | Y | output filter measure |
-----------------------------------------------------------------------------
1 | A | account 45 | account 70 | 0 |
2 | B | account 2 | account 2 | 1 |
3 | C | account 90 | account 500 | 0 |
4 | D | account 7 | account 7 | 1 |
In this example, my filter-measure should return "1" in line 2 and line 4 because the content in line 2 in column "X" is the same as well as in column "Y" (account 2). The same logic for line 4 (account 7)
Thanks for advice on how I can solve this.
Solved! Go to Solution.
@tim_m15 Well, try:
Column = IF([X] = [Y],1,0)
Measure = IF(MAX([X]) = MAX([Y]),1,0)
@tim_m15 Well, try:
Column = IF([X] = [Y],1,0)
Measure = IF(MAX([X]) = MAX([Y]),1,0)
@tim_m15 , a snew column this should work ?
if([X] =[Y],1,0)