March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
How can I DAX code this.
The 1st column is a unique list of part #
The 2nd column in a complete global list of item #
I would like to make a 3rd column that shows (complete global list of item # filtering out the part #)
Seems like this would be pretty easy to do but I'm struggling.
Solved! Go to Solution.
if you are aiming at creating a new calculated table showing the gloabl list of items filtering out the list of parts :
caluclated table =
except ( all(tbl[item_col_name]) , all(tbl[parts_col_name]))
let me know if this helps .
If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution ✅
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠
if you are aiming at creating a new calculated table showing the gloabl list of items filtering out the list of parts :
caluclated table =
except ( all(tbl[item_col_name]) , all(tbl[parts_col_name]))
let me know if this helps .
If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution ✅
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠
I can make that work. Thank you!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |