Forum Discussion
SRobbo1990
4 years agoFrequent Visitor
Multiple Currencies
Hi All, I am currently building a report for multiple offices (UK and US). Obviously the US Office would like to see all their figures in Dollars. I am using a Cube so the data model is set befor...
- 4 years ago
SRobbo1990 , if based on userprincipalname if you can get country then you can switch the measure
example
Meausure =
var _cnt = maxx(filter(Table, Table[email] =userprincipalname (), ), Table[Country])
return
Switch(_cnt ,
"USA", [USD Measure],
[GBP Measure]
)
amitchandak
Super User
4 years agoSRobbo1990 , if based on userprincipalname if you can get country then you can switch the measure
example
Meausure =
var _cnt = maxx(filter(Table, Table[email] =userprincipalname (), ), Table[Country])
return
Switch(_cnt ,
"USA", [USD Measure],
[GBP Measure]
)