Forum Discussion
Leski
6 years agoFrequent Visitor
Measure multiplying the data from the two tables
Hello I'm begining with DAX and I try to create new measure with calculete price in euro; price in local currency from first table [sales] and currency form second [Currency]. Of course, the tables...
- 6 years ago
Try something like:
= SUMX ( Sales, Sales[PriceInLocalCurrency Column] * RELATED ( Currency[Currency Column] ) )
AntrikshSharma
Community Champion
6 years agoTry something like:
= SUMX ( Sales, Sales[PriceInLocalCurrency Column] * RELATED ( Currency[Currency Column] ) )
Leski
6 years agoFrequent Visitor
Thank you, works great.