Forum Discussion

pbrekelmans's avatar
pbrekelmans
New Member
8 years ago
Solved

Unique values from two columns

Hello all,   I'm still fairly new to this piece of software, but greatly impressed by the possibilities it has given, especially because i have a lack of real knowlegde on this matter. This forum h...
  • v-chuncz-msft's avatar
    v-chuncz-msft
    8 years ago

    pbrekelmans,

     

    You may add a calculated table as follows.

    Table =
    DISTINCT (
        UNION (
            SELECTCOLUMNS ( Table1, "object number", Table1[consumed by (object number)] ),
            VALUES ( Table2[client with problem (object number)] )
        )
    )