Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
SRobbo1990
Frequent 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 before I even open PowerBi. 
My question is I have the 'Sum of Booking GBS BCY' which equates to local currency figures and the 'Sum of Booking GBS GBP' needed for the Global Corporate figures both in my data model, I'm wondering would it be possible to filter the report so when I filter by US it only shows 'Sum of Booking GBS BCY' and 'GBP' when filtering by UK?

 

SRobbo1990_0-1641382534271.png

 

SRobbo1990_1-1641382564169.png

Thanks

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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]

)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@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]

)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors