Forum Discussion

dwuorbis's avatar
dwuorbis
Regular Visitor
8 years ago
Solved

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 ...
  • v-chuncz-msft's avatar
    8 years ago

    dwuorbis,

     

    You may add a calculated column first.

    Column =
    LOOKUPVALUE (
        Table2[Quote],
        Table2[FromCurr], Table1[Currency],
        Table2[TOCurr], Table1[TOCurr]
    )