Forum Discussion
annamill
9 years agoRegular Visitor
Currency conversion question
I am very new to Power BI and I need help with converting my total amounts from the Local Currency to USD based on the conversion rate (which is in a different table) I have two related tables: ...
- 9 years ago
I just figured it out!
Amount in USD 3 = SUMX('Opportunity (2)', RELATED('Currency Type'[ConversionRate])*'Opportunity (2)'[Amount])
v-jiascu-msft
Microsoft Employee
9 years agoHi annamill,
You could try this formula. I created a sample as the picture showed. (There isn't a relationship between these two tables.)
AmountInUSD = [Amount] * LOOKUPVALUE ( CurrentlyType[Rate], CurrentlyType[ISOCode], "USD" )
Best Regards!
Dale