Forum Discussion
Relationship and Unique Values
- 8 years ago
Hi klammymaster
Here is a DAX Soluction for creating a slicer table that will have unique values that you can create relationships too.
Then use the field in this table for your slicers
Slicer Table = DISTINCT( UNION ( ALL('biibuserdata'[biibEmail]) , ALL(Intune[Email address]) ) )
klammymaster so you created a bridge table (removing the duplicate emails) and still you weren't able to connect to the original tables as one-many relationship?
Hi zenmemo,
This is the video that I followed: https://www.youtube.com/watch?v=vAvQ8pCnWDk
I was not able to connect anything to the tables with the new table.
- zenmemo8 years agoHelper I
klammymaster, well if your bridge table is void of dupl or null values, it should work. here's an example.
- klammymaster8 years agoFrequent Visitor
Hi zenmemo,
Yes that's exactly what I'm trying to do but I'm not sure why it's not working. Attached are the steps I've done to remove the blanks, errors, null, and etc.
- Phil_Seamark8 years agoMicrosoft Employee
Hi klammymaster
Here is a DAX Soluction for creating a slicer table that will have unique values that you can create relationships too.
Then use the field in this table for your slicers
Slicer Table = DISTINCT( UNION ( ALL('biibuserdata'[biibEmail]) , ALL(Intune[Email address]) ) )