Skip to content

=REMOVESYMBOLS

The REMOVESYMBOLS function removes all symbols from a specified text field, leaving only alphanumeric characters and spaces.

=REMOVESYMBOLS(ValueOrField)

ValueOrField – The text string or field token from which symbols will be removed.

  • Scans the input text string.

  • Removes all symbol characters (e.g., punctuation and special characters).

  • Retains only:

    • Letters (A–Z, a–z)

    • Numbers (0–9)

    • Spaces

  • Returns a cleaned text string with symbols stripped out.

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

  • Useful for cleaning data that contains punctuation or special characters.

  • Helps standardize text for searching, matching, or reporting.

  • Unlike REMOVECHARS, this function automatically targets all symbols at once.

  • Preserves spacing between words for readability.

=REMOVESYMBOLS(Hello, World! #2026 @AI)
Hello World 2026 AI

REMOVESYMBOLS, remove punctuation, strip symbols, alphanumeric cleanup, text cleaning, sanitize text, workflow formulas, formula function