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
doubleclick
Helper II
Helper II

Make Text.Replace Case Insensitive

I want to replace any instance of Ltd, whether it's ltd or LTD or Ltd

 

I did a simple right click, replace text and have been experimenting with the comparer.orignalignorecase function but unable to determine where to put it:

 

Here's my formula:

= Table.ReplaceValue(#"Renamed Columns","LTD","",Replacer.ReplaceText,{"Supplier (cleansed)"})

 

Can anyone help?

1 ACCEPTED SOLUTION

the solution is found here: please can you delete this entire post

 

https://community.powerbi.com/t5/Power-Query/Make-Text-Replace-Case-Insensitive-should-be-easy-but-i...

= Text.Combine(List.RemoveMatchingItems(Text.Split([#"Supplier (cleansed)"]," "),{"ltd"},Comparer.OrdinalIgnoreCase)," ")

 

 

 

View solution in original post

7 REPLIES 7
doubleclick
Helper II
Helper II

can this post be deleted as no one seems to have an answer

Hi, @doubleclick 

List.ReplaceMatchitems is a function manipulate list values.

And you can place the comparer.orignalignorecase function as below:

 

= Table.AddColumn(#"Renamed Columns", "Custom", each Text.Combine(List.ReplaceMatchingItems({[#"Supplier (cleansed)"]},{{"ltd","Ltd"}},Comparer.OrdinalIgnoreCase)))

 

 10.png

 

Plesae check my attached pbix.

 

Best Regards,
Community Support Team _ Eason

the solution is found here: please can you delete this entire post

 

https://community.powerbi.com/t5/Power-Query/Make-Text-Replace-Case-Insensitive-should-be-easy-but-i...

= Text.Combine(List.RemoveMatchingItems(Text.Split([#"Supplier (cleansed)"]," "),{"ltd"},Comparer.OrdinalIgnoreCase)," ")

 

 

 

CNENFRNL
Community Champion
Community Champion

= Table.ReplaceValue(#"Renamed Columns", null, null, (x,y,z) => Text.Replace(Text.Upper(x),"LTD",""), {"Supplier (cleansed)"})

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

this is only one variation?

i thought one of you da geniuses could do this easy

Samarth_18
Community Champion
Community Champion

Hi @doubleclick ,

 

Please try below approach.

 

https://www.youtube.com/watch?v=-oM83cgs5uI 

 

Thanks,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

I watched this already - can someone help with the code?

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.