Skip to content

=REPLACE

The REPLACE function finds specific text within a string and replaces it with new text.

=REPLACE(SearchForText; NewText; SearchWithinText)

SearchForText – The text or value you want to find within the string.

NewText – The text that will replace the matched value.

SearchWithinText – The full text string or field token where the replacement will be performed.

  • Searches the provided text string for the specified value.

  • Identifies all occurrences of the SearchForText value.

  • Replaces each match with the NewText value.

  • Returns the updated text string with replacements applied.

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

  • Useful for correcting, updating, or standardizing text values.

  • Can be used with field tokens via the Insert Field Token button.

  • Works across full strings, not just single characters.

  • Commonly used in data cleanup and transformation workflows.

=REPLACE(Street; Avenue; 123 Street Avenue)
123 Avenue Avenue

REPLACE, find and replace, text substitution, string update, modify text, workflow formulas, data cleanup, formula function