Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Syndicate_Admin
Administrator
Administrator

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 ones they have not yet bought, that is, the opposite of what is being filtered.

In this image, you can see how no customer is selected and the table of articles is complete.

Chipi_0-1665075069100.png

In the following image you can see how when selecting a customer, only the items that SI bought so far this year are shown.

Chipi_1-1665075146780.png

What I would need is to be able to show the opposite of what the item table is showing so that I can also see the items that that customer hasn't bought yet.

I tried generating a new table that makes an EXCEPT between the complete article table and the filtered one, but it didn't work. It seems that he compares them in the same way without taking into account the selected client, resulting in an empty table.

Chipi_2-1665075625678.png

Chipi_3-1665075644214.png

In advance thank you very much!

Best regards

1 ACCEPTED SOLUTION
v-yanjiang-msft
Community Support
Community Support

Hi @Syndicate_Admin ,

According to your description, I create a sample.

vkalyjmsft_0-1665110488719.png

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.

vkalyjmsft_1-1665110608289.png

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:

vkalyjmsft_2-1665111029018.png

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.

 

View solution in original post

2 REPLIES 2
v-yanjiang-msft
Community Support
Community Support

Hi @Syndicate_Admin ,

According to your description, I create a sample.

vkalyjmsft_0-1665110488719.png

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.

vkalyjmsft_1-1665110608289.png

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:

vkalyjmsft_2-1665111029018.png

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.

 

Thank you very 👏🏻👏🏻👏🏻 much !!! It's exactly what I couldn't get to do! Best regards

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.