Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register 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!
User | Count |
---|---|
85 | |
79 | |
64 | |
52 | |
46 |
User | Count |
---|---|
101 | |
52 | |
41 | |
39 | |
37 |