Forum Discussion
Format Column which has multiple currencies with correct currency symbol
- 4 years ago
Hi, Anonymous
Maybe you can try the following methods.
Measure:
Measure = CONCATENATE ( IF ( SELECTEDVALUE ( 'Table'[Currency] ) = "GBP", "£", IF ( SELECTEDVALUE ( 'Table'[Currency] ) = "USD", "$" ) ), CALCULATE ( SUM ( 'Table'[Net Sale] ), FILTER ( ALL ( 'Table' ), [Order Date] = MAX ( 'Table'[Order Date] ) && [Country] = MAX ( 'Table'[Country] ) ) ) )If a new currency appears, you can then write it in the IF function.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous
check this link:
https://www.sqlbi.com/articles/currency-conversion-in-power-bi-reports/
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi Vahid,
That looks promising but it says calculation groups are not available in Power BI. Thus, currently the remaining part of this article can only be implemented in Azure Analysis Services or Analysis Services 2019
- VahidDM4 years ago
Super User
Anonymous
Do you want two calculated tables or a measure?
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/- Anonymous4 years agoNot applicable
Just a single measure. For the visualisation, I will have 2 seperate tables which will be just filtered on country. I have updated my post to make this more clear.
- bcdobbs4 years ago
Community Champion
They are now supported in power bi. You do however have to set them
up using tabular editor.