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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
NaniG
Frequent Visitor

filter Table1 based on table2 values

Hi 

I have two tables, one is 12milion records and second table is 100 rows of records 

i want to filter first record with second record 

filter need to show only that contain second table column1 values only

 

i have found one code in google that showing only except data but i want opposite of except . 

Can you please help me with only contain data to filter 

 

here is i foung except code : 

CALCULATETABLE(ZKB_MATERIAL,EXCEPT(VALUES(ZKB_MATERIAL[MATERIAL]),VALUES('acrylic sheets'[Column1])))

 

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @NaniG 

Your explanation is not very clear but I surmise you are looking for INTERSECT instead of EXCEPT. Try this:

CALCULATETABLE (
    ZKB_MATERIAL,
    INTERSECT (
        VALUES ( ZKB_MATERIAL[MATERIAL] ),
        VALUES ( 'acrylic sheets'[Column1] )
    )
)

 If it does not work, please show a sample of your relevant tables and the expected result

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

View solution in original post

1 REPLY 1
AlB
Community Champion
Community Champion

Hi @NaniG 

Your explanation is not very clear but I surmise you are looking for INTERSECT instead of EXCEPT. Try this:

CALCULATETABLE (
    ZKB_MATERIAL,
    INTERSECT (
        VALUES ( ZKB_MATERIAL[MATERIAL] ),
        VALUES ( 'acrylic sheets'[Column1] )
    )
)

 If it does not work, please show a sample of your relevant tables and the expected result

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

Helpful resources

Announcements
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.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

March Power BI Update Carousel

Power BI Community Update - March 2026

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