Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Match and no match

Hi Community,   I would like to be able to show customers a list of engineers where the Engineer specified the product that they care about, but did not specify the company brand.  I believe we cou...
  • v-chuncz-msft's avatar
    v-chuncz-msft
    8 years ago

    Anonymous,

     

    You may refer to the measure below.

    Measure =
    IF (
        CONTAINS ( Table1, Table1[Id], 3 ) && NOT ( CONTAINS ( Table1, Table1[Id], 8 ) ),
        1
    )