Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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 :
Solved! Go to Solution.
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
|
|
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. |
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
|
|
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. |
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 59 | |
| 42 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 107 | |
| 100 | |
| 38 | |
| 29 | |
| 29 |