This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
Early bird tickets for Inspire 2023 are now available! Discounted pricing closes on January 31st. Save your spot!
Working with Eastern European data I often encounter these special characters (ex: Brașov) that I want to get rid of.
Problem is that I do not want to simply remove the characters but replace them with the equivalent (Brașov must be changed in Brasov).
A simple way to do it is using a formula: DecomposeUnicodeForMatch. It will do the job. The complete formula is:
TitleCase(DecomposeUnicodeForMatch("Brașov")
Agreed, it's a super helpful function. Here's more info on it:
https://help.alteryx.com/20223/designer/string-functions#decomposeunicodeformatch
You could also look at ...
ConvertToCodePage("Brașov",20127)
It will do the same job but it keeps the characters in the same case, you don't need the TitleCase function.
Great ..!