Forum Discussion
Currency conversion and division error
- 5 years ago
Hi GraceTCL ,
You don't have the same granularity, on the exchange rate you have a value once a month and your data you have weekly values, altough they are all in the same month when you do the filtering of the table you can notice that the values for the weeks were the date does not match the end of the month you don't have results.
The image below comes from DAX studio and has you can see the result of the table is a empty value for the exchange rate:
If by other and you change the table to the month and year you get results however this needs to be picked up from the one side of the relationship in this case the exchange rate however the total is still zero:
An important part of the calculations is also the direction of the relationships in your case you have one to many from the exchange rate to the date table, if you use the date table you are using the many side of the relationship and you calculation will break.
If you use the formula I have sent (see example below adjusted to your file) the calculation is performed correctly:
Promo Cost USD V2 = VAR DatesExchange = SUMMARIZE ( 'Exchange Rate', 'Exchange Rate'[end_date_id], 'Exchange Rate'[exchange_one_usd] ) VAR Result = SUMX ( DatesExchange, DIVIDE ( [Promo Cost LC], 'Exchange Rate'[exchange_one_usd] ) ) RETURN ResultContext is everything in measures and it comes from the tables themselves, passing trough the relationships and going into visualizations and filters. In this case your issue is granularity and relationships.
Hi, GraceTCL
I am not sure how your actual data model looks like, but I suggest changing the model a little bit like below.
All measures are in the sample pbix file.
https://www.dropbox.com/s/yk60lce8i1i6qxw/Sample%20%281%29.pbix?dl=0
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM