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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Anonymous
Not applicable

substitute multiple values

Hi I would like to substistute multiple values with one value,

 

In Excel it can be done by =Substitute(Cell reference,{"Trust","Foundation","Endownment"},"") , with the operator { } it allows you to key in multiple values.

 

How can I do it in DAX?

 

 

Thank you in advance,

Eric

2 ACCEPTED SOLUTIONS
v-haibl-msft
Microsoft Employee
Microsoft Employee

@Anonymous

 

Please try with nested SUBSTITUTE function with similar DAX formula as below.

Column1_1 = 
SUBSTITUTE (
    SUBSTITUTE (
        SUBSTITUTE ( 'Table'[Column1], "Trust", "One" ),
        "Foundation",
        "One"
    ),
    "Endownment",
    "One"
)

substitute multiple values_1.jpg

 

Best Regards,

Herbert

View solution in original post

If you're looking for a dynamic approach I think you need to return to the Query editor and M like this:

http://www.thebiccountant.com/2016/05/22/multiple-replacements-in-power-bi-and-power-query/

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

View solution in original post

5 REPLIES 5
v-haibl-msft
Microsoft Employee
Microsoft Employee

@Anonymous

 

Please try with nested SUBSTITUTE function with similar DAX formula as below.

Column1_1 = 
SUBSTITUTE (
    SUBSTITUTE (
        SUBSTITUTE ( 'Table'[Column1], "Trust", "One" ),
        "Foundation",
        "One"
    ),
    "Endownment",
    "One"
)

substitute multiple values_1.jpg

 

Best Regards,

Herbert

If you're looking for a dynamic approach I think you need to return to the Query editor and M like this:

http://www.thebiccountant.com/2016/05/22/multiple-replacements-in-power-bi-and-power-query/

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

Anonymous
Not applicable

Hi all, thank you so much for helping. I want to accept everyone's reply as solution but Microsoft only allow one solution.

 

After looking into the solutions using M, I think it is a better solution rather using Dax if there is complex replacement involve.

 

 

ankitpatira
Community Champion
Community Champion

@Anonymous You can do it using DAX but it is not the only way. Easy way is to use Replace Values function in power bi via query editor. It will replace all occurences but obviously you have to do it few times for each string you want to replace. You can also use Conditional Column feature where you can specify multiple conditions (for multiple strings) and it will result in new column.

 

Capture.PNG

 

 

 

 

 

 

 

 

Capture2.PNG

Anonymous
Not applicable

Hi ankiipatira,

 

Can you show me the code for multiple value replacement?

 

However I am still interested what is the operator for DAX so allow easy replacement for the function.

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

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.