Forum Discussion

Syndicate_Admin's avatar
Syndicate_Admin
Administrator
3 years ago
Solved

View data opposite to filtered data

Hello community, I am in need of the help of one of you. In a sales report, when I select a customer, I figure which items they have already bought so far this year, but I would also like to see the ...
  • v-yanjiang-msft's avatar
    3 years ago

    Hi Syndicate_Admin ,

    According to your description, I create a sample.

    Here's my solution.

    1.Create a new table, don't make relationship between the two tables.

    Table 2 = VALUES('Table'[Art.Si Comprados])

    Note in the new table, you can double click the column name and modify it to Art.No Comprados.

    2.Create a measure.

    Measure =
    IF (
        MAX ( 'Table 2'[Art.No Comprados] ) IN VALUES ( 'Table'[Art.Si Comprados] ),
        1,
        0
    )
    

    Put the Art.No Comprados column in a visual and put the measure in the visual filter, then set its value to1, get the result:

    I attach my sample below for your reference.

     

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.