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
Hello,
I have 2 tables.
ID Table:
| ID | Price | Parent |
| A | 25 | |
| B | 29 | A |
| C | 30 | A |
| D | 41 | |
| E | 42 | D |
| F | 43 | D |
shippingTable:
| ID | Shipping |
| A | 3 |
| D | 5 |
For B,C,E,F value, i don't have any shipping. I have parent column for those to fetch shipping.
my ID table is connected to shipping table on ID-ID 1on1 relationship. 2nd inactive relationship is Parent-ID that is many to one.
I used below measure to fetch shipping based on parent:
I can achieve this with a calculated column on table. But I want to figure out what is the issue with measures
Solved! Go to Solution.
Hi @tc_WII ,
I suggest you to try code as below to create a measure.
shipCost =
VAR _VALUE1 =
CALCULATE ( MAX ( tbShipping[Shipping] ) )
RETURN
IF (
ISBLANK ( _VALUE1 ),
CALCULATE (
MAX ( tbShipping[Shipping] ),
FILTER ( ALL ( tbShipping ), tbShipping[ID] = MAX ( tbID[Parent] ) )
),
_VALUE1
)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@tc_WII , Try like
shipCost=
CALCULATE(MAX(tbShipping[Shipping]),
USERELATIONSHIP(tbShipping[ID],tbID[Parent]))
Worked for me, file is attached after signature
I used the same measure, but it did not work in my model. The only difference on your data model is, both of your relationship is one-to-many. but i used id-id as one to one, only because tbID[ID] is also unique value. Because of that one-to-one, my measure is not grabbing the result 😞
Hi @tc_WII ,
I suggest you to try code as below to create a measure.
shipCost =
VAR _VALUE1 =
CALCULATE ( MAX ( tbShipping[Shipping] ) )
RETURN
IF (
ISBLANK ( _VALUE1 ),
CALCULATE (
MAX ( tbShipping[Shipping] ),
FILTER ( ALL ( tbShipping ), tbShipping[ID] = MAX ( tbID[Parent] ) )
),
_VALUE1
)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This worked. Thank you 🙂
If 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 |
|---|---|
| 55 | |
| 40 | |
| 35 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 71 | |
| 70 | |
| 38 | |
| 35 | |
| 23 |