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! Request now

Reply
Anonymous
Not applicable

Fixed rate currency conversion to display on matrix

Hi guys,

 

I am just a newbie in Power BI and I have encountered some difficulties.

One of the difficulties are I have to covert HKD to USD with a fixed rate of 7.8 and add the originally HKD values and USD values together in USD as the total amount in a matrix visual. What my supervisor wants is the matrix only show USD values of both transactions done in HKD and USD, and also the total amount of transactions in USD.

image.png

Thank you very much for your assistance.

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

@Anonymous 

You can do the conversion with a measure like this.

 

Amount USD = 
SUMX ('Table', 'Table'[Amount] * IF ( 'Table'[Currency] = "HKD", 7.8, 1 ) )

jdbuchanan71_0-1639024441739.png

 

 

View solution in original post

1 REPLY 1
jdbuchanan71
Super User
Super User

@Anonymous 

You can do the conversion with a measure like this.

 

Amount USD = 
SUMX ('Table', 'Table'[Amount] * IF ( 'Table'[Currency] = "HKD", 7.8, 1 ) )

jdbuchanan71_0-1639024441739.png

 

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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