Skip to content

=REMOVEDIACRITICS

The REMOVEDIACRITICS function removes diacritic marks from characters in a text string, converting them into their standard base-letter equivalents.

=REMOVEDIACRITICS(ValueOrField)

ValueOrField – The text string or field token containing characters with diacritics that you want to normalize.

  • Scans the input text for characters with diacritic marks (accents or modifiers).

  • Strips the diacritic marks from each character.

  • Replaces each modified character with its equivalent base character.

  • Returns a clean version of the text without diacritics.

  • Formula functions are case sensitive and must be written in ALL CAPS.

  • Commonly used for standardizing names, addresses, or multilingual text.

  • Improves matching, searching, and comparison consistency across datasets.

  • Does not remove letters - only accent/diacritic marks.

  • Useful before applying functions like REGEXFIND or comparisons.

Given text:
àb̀c̀d̲a̱s̰ñ

=REMOVEDIACRITICS(àb̀c̀d̲a̱s̰ñ)
abcdasn

REMOVEDIACRITICS, remove accents, diacritics removal, normalize text, accent stripping, multilingual cleanup, text standardization, workflow formulas, formula function