Forum Discussion
dwuorbis
8 years agoRegular Visitor
Excurr
Hi guys, I have a problem with showing the exact values of the target currency, from AUD to EUR in this example. I've added the DAX expression of "ToSales" (value of target currency): The ...
- 8 years ago
You may add a calculated column first.
Column = LOOKUPVALUE ( Table2[Quote], Table2[FromCurr], Table1[Currency], Table2[TOCurr], Table1[TOCurr] )
v-chuncz-msft
8 years agoCommunity Support
You may add a calculated column first.
Column =
LOOKUPVALUE (
Table2[Quote],
Table2[FromCurr], Table1[Currency],
Table2[TOCurr], Table1[TOCurr]
)
- adieball8 years agoHelper I
Hi Sam
thanks a lot.
This is exactly what I have found in parralel.
Andre