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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Rallerbabz
Frequent Visitor

Filter table based on another table

Hi,

 

I would like to filter numbers out based on if they exist in another table.

 

Example given.

 

Table 1 consist 

ID     Text Field

 

Table 2 consist 

ID

 

 

I'd like to filter Table 1, removing all the rows where the number from Table 2 ID exist.

 

I've tried by making a new table with Column = EXCEPT(VALUES(Table1[ID]);VALUES(Table2[ID])) 

 

Which gives me a new table that filters perfectly. however I need to keep my second column "Text Field".

 

Any ideas?

1 ACCEPTED SOLUTION
v-yuezhe-msft
Employee
Employee

@Rallerbabz,

Use the DAX below instead.

Table = CALCULATETABLE(Table1;EXCEPT(VALUES(Table1[ID]);VALUES(Table2[ID])))

1.JPG

Regards,

Lydia

Community Support Team _ Lydia Zhang
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

5 REPLIES 5
Rallerbabz
Frequent Visitor

Thanks alot! Works like a charm!

v-yuezhe-msft
Employee
Employee

@Rallerbabz,

Use the DAX below instead.

Table = CALCULATETABLE(Table1;EXCEPT(VALUES(Table1[ID]);VALUES(Table2[ID])))

1.JPG

Regards,

Lydia

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-yuezhe-msft  I am trying to do something similar, but do not want to build another table.  Instead, I want to calculate measures based on the filter that will be visualized on a matrix in a report. For example:

Table A

IDCostRevenue
1124
1235
1337
14511

 

Table B (discontinuation)

ID
11
12

 

Matrix on report:

 Before DiscAfter Disc
Total Cost138
Total Revenue2718

 

Any recommendations?  Thank you!!

What if I want to keep the values in table 2 and filter out the remaining values from table 1?

I believe you can use INTERSECT instead of EXCEPT

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.