Forum Discussion

key_master_95's avatar
key_master_95
Frequent Visitor
2 years ago
Solved

Convert currency without exchange rate

Hi, all! I have an issue that I can't overcome. I have one table Coffee with countries, sales in EUR and volume of sale and I have other table with countries, EUR, CHF Question  -how ...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi key_master_95 ,

    Your data table may be complicated, if possible, please provide a simplified sample data for us to test, thank you.
    This is a test dataset I created myself and I'm not sure if it matches the data model you are using:


    I am using the following two DAXes for this calculation:

    Total Sales in EUR = 
    SELECTEDVALUE(Coffee[sales in EUR(unit price)]) * SELECTEDVALUE(Coffee[volume of sale])
    Total Sales in CHF = 
    SUMX('Coffee', 'Coffee'[Total Sales in EUR] / RELATED('Table'[EUR]) * RELATED('Table'[CHF]))


    Best Regards,
    Dino Tao
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

  • zenisekd's avatar
    zenisekd
    2 years ago

    with country columns related it should work just the same. Only requirement would be that both need to be in the same data type (text) and both contain the same values: BE-BE or Belgium-Belgium. I am suposing here that in the country/currency table you have only one line per country. Please shere the error message.