Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi guys,
I have two tables:
Table A (Supplier ID = 1,2,3,4,5,6,7)
Table B (Supplier ID = 4,5,6)
I would like to filter out Supplier ID in Table B from Table A, so that I have only ID = 1,2,3,7 but I don't know how to go about it.
I'm new to DAX and any help would be appreciated. Thanks!
Solved! Go to Solution.
Table =
EXCEPT('TableA'[SupplierID],'TableB[SupplierID])
@Anonymous
except
new Table = except(Table1[Supplier Id], Table2[Supplier ID])
Table =
EXCEPT('TableA'[SupplierID],'TableB[SupplierID])
Thanks it worked!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.