Forum Discussion
Dhjlm
2 years agoFrequent Visitor
Help needed to calculate prices
I have this table called "Carrier" containing shipment, zone and weight I also have a table called "Prices" containing weight, zone and prices. The prices differ depending on weight and zone....
- 2 years ago
Dhjlm You can try merge option in Power Query. You can specify Zone and Weight while doing the merge operation. After that, you can expand the price column.
Another option, you can write a DAX measure. Example:
Shipment Price = VAR _zone = SELECTEDVALUE ( 'Carrier'[Zone] ) VAR _weight = SELECTEDVALUE ( 'Carrier'[Weight] ) VAR _result = SUMX ( FILTER ( 'Prices', [Weight] = _weight && [Zone] = _zone ), [Prices] ) RETURN _resultThis measure will work only when the Shipment ID is in the context.
nandukrishnavs
Community Champion
2 years agoDhjlm You can try merge option in Power Query. You can specify Zone and Weight while doing the merge operation. After that, you can expand the price column.
Another option, you can write a DAX measure. Example:
Shipment Price =
VAR _zone =
SELECTEDVALUE ( 'Carrier'[Zone] )
VAR _weight =
SELECTEDVALUE ( 'Carrier'[Weight] )
VAR _result =
SUMX (
FILTER (
'Prices',
[Weight] = _weight
&& [Zone] = _zone
),
[Prices]
)
RETURN
_resultThis measure will work only when the Shipment ID is in the context.