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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Nikki
Helper II
Helper II

currency conversion help please

hi everyone

 

so i have a sql direct query with several tables;

 

table1 = financials

table2 = conversionrates

 

 

table1 has about 20 columns in sqlazure that has a bunch of numeric AUD data

 

table2 has 10 different conversion rates which are AUD to for example USD and AUD to Euro and so on

 

(my customer sets the conversion rates)

 

so how can i create a measure or slicer that will allow me to pick say USD or EURO or GBP to see my financial data in that currency with my conversion rates?

 

sorry if this is just too hard...i can do it in sqlazure and create 10 additional columns and rows but surely this is what measures are for right??

 

thank you all so much in advance 🙂 🙂 🙂

 

Nikki

1 ACCEPTED SOLUTION
Eric_Zhang
Microsoft Employee
Microsoft Employee

@Nikki

You can use some measure like below. Check more details in the attached pbix.zip

converted sales =
IF (
    ISFILTERED ( conversionrates[To] ),
    SUM ( financials[sales] ) * MAX ( conversionrates[rate] ),
    SUM ( financials[sales] )
        * MAXX (
            FILTER ( conversionrates, conversionrates[To] = "USD" ),
            conversionrates[rate]
        )
)
//BY DEFAULT, it converts to USD 

Capture.PNG

View solution in original post

1 REPLY 1
Eric_Zhang
Microsoft Employee
Microsoft Employee

@Nikki

You can use some measure like below. Check more details in the attached pbix.zip

converted sales =
IF (
    ISFILTERED ( conversionrates[To] ),
    SUM ( financials[sales] ) * MAX ( conversionrates[rate] ),
    SUM ( financials[sales] )
        * MAXX (
            FILTER ( conversionrates, conversionrates[To] = "USD" ),
            conversionrates[rate]
        )
)
//BY DEFAULT, it converts to USD 

Capture.PNG

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors