Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Kareus
Helper I
Helper I

Need Help: Filter Column Question

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.

Kareus_0-1708722292323.png

 

1 ACCEPTED SOLUTION
Daniel29195
Super User
Super User

@Kareus 

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! 🤠

 

View solution in original post

2 REPLIES 2
Daniel29195
Super User
Super User

@Kareus 

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!

 

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors