March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have two tables:
1. Connections (information on connected person, time etc.)
2. Message Classification (Unique messages sent)
Now I want to see all connections, that don't have a message yet.
So far so good:
Tables can be linked via URL. It is a one-to-many relationship (1 side: Connections, many side: Messages).
Due to some other relationships I can only use an inactive relationship and make use of the USERELATIONSHIP Function.
This is my measure:
Persons w no Mess = CALCULATE(
DISTINCTCOUNTNOBLANK(Connections[URL])
, USERELATIONSHIP(Connections[URL], 'Messages Classification'[Contacted Person URL])
)
But I always receive too many values for the messaged person. I get all possible combinations in my output table (like the full scalar value) and I don't know why, since there is a valid connection between these two tables...
This is the output:
I only want to retrieve one single row per Connection. And if there is no message for a connection, than show blank as message column.
Hope you get what I mean and can help 😊
Due to some other relationships I can only use an inactive relationship and make use of the USERELATIONSHIP Function.
That's not what USERELATIONSHIP is for. Its main purpose is to switch connections between two tables. Let's say from the Calendar Date to either the Order Date or the Ship Date. Yes, you can use it to "switch on/off" a single relationship but ONLY if switching that on will not result in a circular reference/path ambiguity. Which is most likely what happens in your scenario, leading to the cartesian result.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |