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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
1001
Resolver II
Resolver II

Removing Blank from s Distinct function Table.

Hi Guys, I've created a table of distinct values from another table. However, I have a blank cell that's carried across. The blank cell is preventing me from creating a one to many relationship to the original MasterData table. It's coming up many to many.  How can I remove this blank cell so it will allow me a one to many connection?  The DAX below is what I have. Thanks. 

SubProduct Grp = DISTINCT(Masterdata[Sub Category])
4 REPLIES 4
grazitti_sapna
Resolver I
Resolver I

Hey Try using this Dax formula

SubProduct Grp = Distinct(Not(isblank(Masterdata[Sub Category])))

Ahmedx
Super User
Super User

SubProduct Grp = FILTER(DISTINCT(Masterdata[Sub Category]),[Sub Category]<>BLANK())

It solved my problem, thanks

Hi Ahmedx, thanks for replying.

I ended up, in the Query editor, referencing my main table, removing blank rows, removing duplicates, then deleting all other columns to create my new Lookup table. Then loaded that into the report. Everyhting works fine now. Cheers. 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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