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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Witold
Frequent Visitor

Add Local currency for every row, based on country code with Currency format

Hi, I need to have a different Currency for every row in one column Based on the country code or country. 

image (7).png

 

Right now I have a dax :

Revenue Local Currency =
CONCATENATE (
    IF (
        SELECTEDVALUE ( 'Table'[Currency] ) = "GBP", "£",
        IF ( SELECTEDVALUE ( 'Table'[Currency] ) = "USD", "$",
         IF ( SELECTEDVALUE ( 'Table'[Currency] ) = "JPY", "¥" ))
    ),
    CALCULATE (
        SUM ( 'Table'[Net Sale] ),
        FILTER (
            ALL ( 'Table' ),
            [Order Date] = MAX ( 'Table'[Order Date] )
                && [Country] = MAX ( 'Table'[Country] )
        )
    )
)
 
 
It works well but it works only as TEXT format, and I really keen to have as currency
Thanks in advance 
1 REPLY 1
lbendlin
Super User
Super User

Text format is your only option at the moment.  If this is important to you please consider voting for an existing idea or raising a new one at https://ideas.powerbi.com

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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