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
admin11
Memorable Member
Memorable Member

How to add one more condition to my expression to display correct currency sign ?

Hi All

 

Below expression work fine for SOURCE =TS :-

_CURRENCY = If(Mid(AR[Customer/Vendor Code],2,1) = "U","USD","SGD")

 

The above expression only suitable for SOURCE = TS

 

May i know how to add one more condition for above expression ?

 

If SOURCE = TA , then display SGD

If SOURCE = TP , then display MYR

If SOURCE = TI , then display IDR

 

Hope some one can advise me.

 

My sample PBI file :-

 

https://www.dropbox.com/s/ageeb7resqpsysk/PBT_SOLVE%20AR%20CURRENCY.pbix?dl=0

 

Thank you

 

Paul

1 ACCEPTED SOLUTION
HotChilli
Super User
Super User

Are you looking for a SWITCH statement?

_CURRENCY =  
SWITCH (AR[SOURCE],
"TS", IF (MID(AR[Customer/Vendor Code],2,1)  = "U", "USD", "SGD") ,
"TA",  "TASGD" ,
"TP",  "MYR" ,
"TI",  "IDR" ,
"N/a no value"
)

If the logic looks right, please test at your side

View solution in original post

3 REPLIES 3
HotChilli
Super User
Super User

just create a new post - someone else can respond if I'm not around. Good luck

HotChilli
Super User
Super User

Are you looking for a SWITCH statement?

_CURRENCY =  
SWITCH (AR[SOURCE],
"TS", IF (MID(AR[Customer/Vendor Code],2,1)  = "U", "USD", "SGD") ,
"TA",  "TASGD" ,
"TP",  "MYR" ,
"TI",  "IDR" ,
"N/a no value"
)

If the logic looks right, please test at your side

@HotChilli 

 

Thank you very much , now when i select SOURCE = TP , Currency will display MYR.

Thank you for your help.

 

Can i ask you follow up question , related to recode currency , using this post to ask or should i create new post ?

 

Paul Yeo

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.