Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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
Solved! Go to Solution.
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
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @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
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsIf you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 74 | |
| 72 | |
| 39 | |
| 35 | |
| 23 |