[]
        
(Showing Draft Content)

SUBSTITUTE

This function substitutes a new string for specified characters in an existing string.

Syntax

SUBSTITUTE(text, old_text, new_text, [instance_num])

Arguments

This function has these arguments:

Argument

Description

text

String or reference to a cell containing the string in which you want to replace characters

old_text

String to be replaced

new_text

New string to use instead of existing string

instance_num

[Optional] Which occurrence of the existing string to replace; otherwise every occurrence is replaced

Remarks

Use this function to replace specific text with other text. Use the REPLACE function to replace a specific number of characters in a specific location with other characters.

Data Types

Accepts string data for the text , old_piece , and new_piece arguments, and numeric data for the instance argument. Returns string data.

Examples

SUBSTITUTE("Down Trend","Down","Up") gives the result Up Trend

SUBSTITUTE("Feb 1, 1991","1","2", 3) gives the result Feb 1, 1992