Forum Discussion

stefan321's avatar
stefan321
Helper I
2 years ago
Solved

Different collor compare values

Hi     i have two tables, lets say TableA & TableB TableB contains allowed Version numbers like 13.1.5 TableA contains also some different Version number, but only allowed Version numbers (check...
  • Fowmy's avatar
    Fowmy
    2 years ago

    Please use the following measure:

     

    CF =
    IF (
    NOT CONTAINSROW (
    VALUES ( table2[version number] ),
    SELECTEDVALUE ( table1[version number] )
    ),
    "red"
    )