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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
chutchut09
Regular Visitor

Multi currency reporting question

I have sales fact table that has columns for sales in local currency, Sales in USD, Sales in EUR, Sales in GPB and the local currency code.

I have a exchange rate table that reports each currency exhange rate against the 3 reporting currencies. Instead of reporting by just 3 currencies we want to report by all the different local currencies. I created a measure called Sales currency, so we are going from just the USDs to multi-currencies. 

 

chutchut09_0-1685820531618.png

My questions are,

1) Is there a way to leverage just the sales amount in local currency columns and total sales displayed by default currency of usds (when nothing is selected)?

Thank you in advance. Link to the power bi report

1 ACCEPTED SOLUTION
v-rzhou-msft
Community Support
Community Support

Hi @chutchut09 ,

 

I suggest you to create an unrelated Currency Code table for slicer.

Sales Currency =
IF (
    MAX ( 'Dim Currency'[Currency Code] )
        IN VALUES ( 'Slicer Currency'[Currency Code] ),
    IF (
        ISFILTERED ( 'Slicer Currency'[Currency Code] ),
        IF (
            ISCROSSFILTERED ( 'Dim Currency' ),
            VAR SelectedCurrency =
                SELECTEDVALUE ( 'Dim Currency'[Currency Code], "USD" )
            VAR DatesExchange =
                SUMMARIZE (
                    FILTER (
                        'Fact Exchange Rate',
                        'Fact Exchange Rate'[Reporting Currency] = "USD"
                    ),
                    'Fact Exchange Rate'[MMM-YYYY],
                    'Fact Exchange Rate'[Exchange Rate]
                )
            VAR Result =
                IF (
                    NOT ISBLANK ( SelectedCurrency ),
                    IF (
                        SelectedCurrency = "USD",
                        [Total Sales_USD],
                        SUMX ( DatesExchange, [Total Sales_USD] * 'Fact Exchange Rate'[Exchange Rate] )
                    )
                )
            RETURN
                Result
        ),
        [Total Sales_USD]
    )
)

Result is as below.

vrzhoumsft_0-1686032073536.png

vrzhoumsft_1-1686032081424.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
chutchut09
Regular Visitor

I decided to keep what I have. I know the ask is a bit bizzare. It works! thank you for posting this alternative solution. 

v-rzhou-msft
Community Support
Community Support

Hi @chutchut09 ,

 

I suggest you to create an unrelated Currency Code table for slicer.

Sales Currency =
IF (
    MAX ( 'Dim Currency'[Currency Code] )
        IN VALUES ( 'Slicer Currency'[Currency Code] ),
    IF (
        ISFILTERED ( 'Slicer Currency'[Currency Code] ),
        IF (
            ISCROSSFILTERED ( 'Dim Currency' ),
            VAR SelectedCurrency =
                SELECTEDVALUE ( 'Dim Currency'[Currency Code], "USD" )
            VAR DatesExchange =
                SUMMARIZE (
                    FILTER (
                        'Fact Exchange Rate',
                        'Fact Exchange Rate'[Reporting Currency] = "USD"
                    ),
                    'Fact Exchange Rate'[MMM-YYYY],
                    'Fact Exchange Rate'[Exchange Rate]
                )
            VAR Result =
                IF (
                    NOT ISBLANK ( SelectedCurrency ),
                    IF (
                        SelectedCurrency = "USD",
                        [Total Sales_USD],
                        SUMX ( DatesExchange, [Total Sales_USD] * 'Fact Exchange Rate'[Exchange Rate] )
                    )
                )
            RETURN
                Result
        ),
        [Total Sales_USD]
    )
)

Result is as below.

vrzhoumsft_0-1686032073536.png

vrzhoumsft_1-1686032081424.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.