Forum Discussion
Calculate Translated Balance using movement data in base currency
Hi
I would like to calculate the closing balance and opening balance in ZAR currency from the base currencies using a DAX measure. My current attempt wont work. Perhaps it is a syntax issue in where I multiply with the currency rate.
I have a row for each month and columns for the base movement amount, the closing rate and opening currency rate for the month.
My current attempt to calculate the closing balance at each selected date:
Gross Premium Debtors Close ZAR:
CALCULATE ( [Gross Premium Debtors move],
FILTER( ALL( 'SSAS V_DIM_Date'), 'SSAS V_DIM_Date'[Date] <= MAX( 'SSAS V_DIM_Date'[Date]) )
* 'SSAS V_FactPremiumCombined'[ClosingCurrencyRate]) )
Gross Premium Debtors move:=SUM('SSAS V_FactPremiumCombined'[GrossDebtors_MovementInclVAT])
amitchandak
6 Replies
- v-kkf-msftCommunity Support
Hi Anonymous ,
Based on your description, I create a measure using the following sample data. Does it match the output you want?
Measure 3 = CALCULATE( SUM( 'SSAS V_FactPremiumCombined'[GrossDebtors_MovementInclVAT] ) * MAX( 'SSAS V_FactPremiumCombined'[ClosingCurrencyRate] ), FILTER( 'SSAS V_FactPremiumCombined', 'SSAS V_FactPremiumCombined'[Month] <= MAX('SSAS V_DIM_Date'[Date]) ) )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.- AnonymousNot applicable
Hi,
thank you for this. Did you not mean this in the formula (the bold below):
can you share the pbix which you created, please/Gross Premium Debtors Close ZAR **bleep** move:=
CALCULATE( SUM( 'SSAS V_FactPremiumCombined'[GrossDebtors_MovementInclVAT] ) * MAX( 'SSAS V_FactPremiumCombined'[ClosingCurrencyRate] ),
FILTER( 'SSAS V_DIM_Date', 'SSAS V_DIM_Date'[ReportingDateEnd] <= MAX('SSAS V_DIM_Date'[ReportingDateEnd]) ) )- v-kkf-msftCommunity Support
Hi Anonymous ,
This is my PBIX file.
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
WinnizIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.