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

Be 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

Reply
Anonymous
Not applicable

USERELATIONSHIP issues

Hi everyone,

 

For a report on stock flows I need to have the name of both the "From" location and "To" location. Both these entities are related to the same warehouse location dimension. Power BI only allows only 1 single active relationship:

 

So I will need to "calculate" the other name manually. (I can't copy the Warehouse table due to RLS role constraints).

 

I used the following DAX statement to manually force PBI to use the inactive relationship:

 

 

NameTo = CALCULATE(
  VALUES(Warehouse[Name]);
  USERELATIONSHIP(Warehouse[ID]; Flow[To])
) 

 

The result gives me the same name as the active relationship which I don't want.

Can anyone help me with my statement?

 

Thanks in advance,

 

Harm

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @Anonymous,

 

I would not use the relation between both table I would do two columns on your data table with the following syntax:

 

From name = LOOKUPVALUE(Warehouse[Name], Warehouse[ID] , Flow[From])

To name = LOOKUPVALUE(Warehouse[Name], Warehouse[ID] , Flow[To])

If you want to use the column with the user relationship you need to make the column on the Flow table and not on the wharehouse table as you have that's why you have the same name always.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

1 REPLY 1
MFelix
Super User
Super User

Hi @Anonymous,

 

I would not use the relation between both table I would do two columns on your data table with the following syntax:

 

From name = LOOKUPVALUE(Warehouse[Name], Warehouse[ID] , Flow[From])

To name = LOOKUPVALUE(Warehouse[Name], Warehouse[ID] , Flow[To])

If you want to use the column with the user relationship you need to make the column on the Flow table and not on the wharehouse table as you have that's why you have the same name always.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.