Forum Discussion
onkelphill
8 years agoFrequent Visitor
Calculate Total Price | Lookup values
Hello everyone, looking for help to solve with the following, probably standard, scenario. I need to calculate the total price ( quantity * rate) for each transaction of the Lanes table. Ulti...
v-chuncz-msft
8 years agoCommunity Support
You may consider using RANKX Function to add a calculated column first.
Column =
RANKX (
CALCULATETABLE (
Quotations,
ALLEXCEPT ( Quotations, Quotations[LaneID], Quotations[Bracket] )
),
Quotations[Rate],
,
ASC,
DENSE
)
- onkelphill8 years agoFrequent Visitor
thank you very much.
Actually, i found this example and it is exactly what i am looking for.
However, although i am following the instructions it does not work for me. This is the error message i am getting:
"A table of multiple values was supplied where a single value was expected"
Any ideas?
Thank you very much!
- bsas8 years agoPost Patron
- onkelphill8 years agoFrequent Visitor
- v-chuncz-msft8 years agoCommunity Support