Substitutes all instances of one value with another value
SUBSTITUTE( text, value to find, value to substitute )
text
value to find
value to substitute
Returns a string with all instances of one value replaced by another
Arguments
Description
String(s) to search for value to find
Character or string to find in text
Character or string to substitute
Outputs text with all instances of value to find replaced with value to substitute
SUBSTITUTE("Spreadsheets", "Spread", "Bed") >> "Bedsheets"
Last updated 4 years ago
Was this helpful?