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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi all. I would like to create a list called WIP. I have 3 querys - all IDs, than another called warehouse and one shipped. I would like to remove the warehouse and the sipped parts ID from the "all ID" list to get the production parts.E.g:
IDs , 11,22,23,25,27,28,30,33,35 Warehouse: 28,27,25, Shipped: 23,22,11 = WIP : 30,33,35 (a-b-c=d)
What would be the best method?
Thank you in advance
Solved! Go to Solution.
Hi @Tommyvhod
You can do that with EXCEPT( ) and UNION( ). Assuming ID, Warehouse and Shipped are tables:
1. All columns must have the same name, so rename, for example, to ID[ID], Warehouse[ID] and Shipped[ID]
2. Create a new calculated table (one column with your list):
WIP = EXCEPT ( DISTINCT ( ID[ID] ), UNION ( DISTINCT ( Warehouse[ID] ), DISTINCT ( Shipped[ID] ) ) )
Please mark the question solved when done and consider giving kudos if posts are helpful.
Cheers
Hi @Tommyvhod
You can do that with EXCEPT( ) and UNION( ). Assuming ID, Warehouse and Shipped are tables:
1. All columns must have the same name, so rename, for example, to ID[ID], Warehouse[ID] and Shipped[ID]
2. Create a new calculated table (one column with your list):
WIP = EXCEPT ( DISTINCT ( ID[ID] ), UNION ( DISTINCT ( Warehouse[ID] ), DISTINCT ( Shipped[ID] ) ) )
Please mark the question solved when done and consider giving kudos if posts are helpful.
Cheers
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
12 | |
10 | |
9 | |
9 |