The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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!
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
77 | |
70 | |
48 | |
41 |
User | Count |
---|---|
140 | |
112 | |
72 | |
64 | |
63 |