🌐
How-To Geek
howtogeek.com › home › web › how to substitute text in google sheets
How to Substitute Text in Google Sheets
April 27, 2022 - In this example, we'll replace our order number in cell A1 using the following formula: ... Here, the [0-9]+ represents numbers and is placed within quotes and the 111111 is the new text. For one more example using REGEXREPLACE, we're replacing the spaces in our product number with hyphens. ... Here, the \s is the regular expression for the spaces. Then we replace those with hyphens (-). When you need to substitute new text for old, you have more than one way to do it in Google Sheets.
🌐
Stack Overflow
stackoverflow.com › questions › 48246213 › google-sheets-function-to-replace-text-in-another-formula
spreadsheet - Google Sheets: Function to Replace Text in Another Formula - Stack Overflow
Note that on Sheet2, some record numbers can be repeated, and the Color/size/inputs vary on Sheet2, but the FORMULA should be the same (except for updating the named ranges) ... @mrtig yeah, i read that and didn't look like it solved it for me since my original formulas I want to reference are different. ... Save this answer. ... Show activity on this post. I believe what you need can be achieved using the INDIRECT() formula function. You can read about it here: https://support.google.com/docs/answer/3093377?hl=en
Discussions

Using find and replace function inside a formula to replace a column
Do it in two steps: replace the N with B, which will break the countifs. replace COUBTIFS with COUNTIFS. Reply with solution verified if this produces the desired result, as required by the subreddit rules. More on reddit.com
🌐 r/googlesheets
3
1
March 23, 2024
Help with find and replace in googlesheets
Posting your data can make it easier for others to help you, but it looks like your submission doesn't include any. If this is the case and data would help, you can read how to include it in the submission guide . You can also use this tool created by a Reddit community member to create a blank Google Sheets document that isn't connected to your account. Thank you. I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns. More on reddit.com
🌐 r/googlesheets
8
1
June 2, 2024
anyway to automate find and replace?
You would need to use Google Apps Script on a trigger than runs however often you need it to run. Give me an example of what you are finding and replacing and I’ll throw something together when I get a moment. Example: Finding the number “2” and changing it to “two”. Also, is this in a specific column or the entire sheet/tab? Is it a specific sheet? Etc More on reddit.com
🌐 r/sheets
7
1
January 27, 2023
I want to clean a sheet using the 'find and replace' function, but the program finds no matches even though there are many.
Is this coming in from a linked google form? If so, I’d urge you to not remove the text from the column headers of the actual sheet that’s linked. Instead, construct what you would like it to look like in another sheet in the workbook and then pull the data over, all of which can be done with formulas. The cardinal rule of sheets with linked forms is to do absolutely nothing to the sheet that’s linked. Truly, nothing. Messing with it (or adding formulas to it) runs the risk of all kinds of future issues and the things done to it (format changes, formulas, etc) often don’t behave the way you’d anticipate because of the way the link between the form and the sheet functions. Reply with solution verified if this helps answer your question. More on reddit.com
🌐 r/googlesheets
3
1
March 2, 2024
People also ask

What is the REPLACE function in Google Sheets?
The REPLACE function in Google Sheets allows you to modify text by replacing a specified portion with new characters. It follows the syntax REPLACE(text, position, length, new_text), where you define the starting position, number of characters to replace, and the replacement text. It's useful for structured text updates.
🌐
owox.com
owox.com › blog › articles › google sheets tips › how to use the replace function in google sheets for seamless text updates
Google Sheets REPLACE Function 2025: Simplify Text Updates Easily
How do I use the REPLACE function in Google Sheets?
To use the REPLACE function in Google Sheets, enter =REPLACE(text, position, length, new_text). Specify the text, starting position, number of characters to replace, and the new text. For example, =REPLACE("Google Sheets", 8, 6, "Docs") returns "Google Docs" by replacing "Sheets" with "Docs."
🌐
owox.com
owox.com › blog › articles › google sheets tips › how to use the replace function in google sheets for seamless text updates
Google Sheets REPLACE Function 2025: Simplify Text Updates Easily
Can the REPLACE function work with numbers in Google Sheets?
Yes, the REPLACE function works with numbers in Google Sheets, but it treats them as text. If you apply =REPLACE(12345, 2, 2, "99"), it returns "19945" as text. To keep it numeric, use VALUE(REPLACE(A1, 2, 2, "99")) to convert the result back to a number.
🌐
owox.com
owox.com › blog › articles › google sheets tips › how to use the replace function in google sheets for seamless text updates
Google Sheets REPLACE Function 2025: Simplify Text Updates Easily
🌐
Owox
owox.com › blog › articles › google sheets tips › how to use the replace function in google sheets for seamless text updates
Google Sheets REPLACE Function 2025: Simplify Text Updates Easily
May 25, 2026 - Combining the REPLACE function with LOWER in Google Sheets allows users to modify text while ensuring all characters are converted to lowercase. This is useful for standardizing data formats, correcting text entries, and ensuring consistency across datasets. By applying the REPLACE formula first ...
🌐
LiveFlow
liveflow.com › product-guides › replace-function
How to Use REPLACE Function in Google Sheets | LiveFlow
You can combine the VALUE and REPLACE functions as follows: “=VALUE(REPLACE(B5,3,3,123))”. Furthermore, you can replace the entire text as shown in the fourth example (“LF”→“LiveFlow”). ... If you need to find a value in the first ...
🌐
InfoInspired
infoinspired.com › home › google docs › spreadsheet › how to use the replace function in google sheets
How to Use the REPLACE Function in Google Sheets
December 10, 2024 - The REPLACE function in Google Sheets helps you replace part of a text string, starting from a specified position and for a specified length, with a different text string. Assume cell A1 contains the string "Apple 24, Mango 50, Total 74". The following formula would return "Apple 24, Mango ...
🌐
Google Support
support.google.com › docs › answer › 3098247
REPLACE - Google Docs Editors Help
Replaces part of a text string with a different text string. Sample Usage REPLACE("Spreadsheets", 1, 6, "Bed") Syntax REPLACE(text, position, length, new_text) text - The text, a part of
🌐
Softr
softr.io › home › blog › 100 google sheets formulas that actually work: a cheat sheet
100 Google Sheets formulas: The complete list
July 23, 2026 - Using SPLIT in a Google Sheet. SUBSTITUTE(text_to_search, search_for, replace_with, [occurrence_number])
Find elsewhere
🌐
Google Support
support.google.com › docs › answer › 3094215
SUBSTITUTE - Google Docs Editors Help
Replaces existing text with new text in a string. Sample Usage SUBSTITUTE("search for it","search for","Google") SUBSTITUTE(A2,"new york","New York") SUBSTITUTE("January 2, 2012",2,3,1) Syntax S
🌐
The Bricks
thebricks.com › home › resources › how to use replace in google sheets: a step-by-step guide
How to Use REPLACE in Google Sheets: A Step-by-Step Guide
April 22, 2025 - Use `REPLACE` when you know the position and length of the text to be changed. It's about location. Use `SUBSTITUTE` when you know the exact text string you want to change, no matter where it appears. It's about content. Imagine your data in cell A6 is "Red-Jacket-Large-Red". Because you're targeting a specific string of text ("Red"), `SUBSTITUTE` is the better tool. The formula would tell Sheets to only replace the first occurrence it finds.
🌐
Ablebits
ablebits.com › ablebits blog › google sheets tips › google sheets functions › find and replace special characters in google sheets: formulas and add-ons for the job
Find and replace special characters in Google Sheets: formulas and add-ons for the job
If there are several instances of the text/character in a cell, you'll be able to pick the one to replace in Google Sheets. Omit the argument — and all instances will be changed. Now, when you import data from the Web, you may find smart quotes there: I will use SUBSTITUTE to replace these Google Sheets characters with straight quotes. Since one function finds and changes one character at a time, I'll start with the opening smart quotes: ... The first formula is looking at A2 searching for opening smart quotes — “ (this must be put in double quotes per the function request) and changes them to straight quotes — "
Published: September 19, 2023
Views: 60
🌐
LiveFlow
liveflow.com › product-guides › substitute-function-in-google-sheets-explained
SUBSTITUTE Function in Google Sheets: Explained | LiveFlow
For example, you can use the SUBSTITUTE formula to replace specific words or characters in a cell or multiple instances of a line of text with a different string of text. ... Your next financial spreadsheet could be right here! 100+ spreadsheet templates, from FP&A to tax planning. ... To use the SUBSTITUTE formula in Google Sheets...
🌐
Better Sheets
bettersheets.co › formulas › replace
REPLACE Google Sheets Formula: Replaces part of a text string with a different...
In cell B1, use the REPLACE() function to replace the first 3 characters of the text in cell A1 with 'XYZ'. The result should display 'XYZ' followed by the remaining characters from A1.
🌐
InfoInspired
infoinspired.com › home › google docs › spreadsheet › how to use the substitute function in google sheets
How to Use the SUBSTITUTE Function in Google Sheets
June 3, 2024 - You can repeat a string ‘n’ times using the SUBSTITUTE function in Google Sheets. Specify "" (empty string) in both search_for and replace_with and use a SEQUENCE formula in occurrence_number. ... This formula will repeat the text in cell A1 five times.
🌐
Kieran Dixon
kierandixon.com › home › google sheets 101 › google sheets 101: replacing text
Google Sheets 101: Replacing Text - Kieran Dixon
August 3, 2021 - In cell B2, enter a formula that replaces Fart with Kurt from the text in A2, subsituting as few letters as possible.
🌐
Labnol
labnol.org › replace-substitute-function-240425
An Improved SUBSTITUTE Function for Replacing Multiple Values in Google Sheets
April 25, 2024 - Google Sheets offers a built-in SUBSTITUTE function that can can find and replace a specific text in a cell with another value. For instance, you can use =SUBSTITUTE("My favorite color is red", "red", "blue") to replace the text red in the string ...
🌐
YouTube
youtube.com › software spring
Google Sheets Replace Function | How to Use Replace | Spreadsheet Function - YouTube
Use the Google Sheets REPLACE function to replace part or the entire text with different text. You have to specify the starting point from where the replacem...
Published: August 10, 2020
Views: 808
🌐
Spreadsheet Point
spreadsheetpoint.com › home › google sheets tips › 9 ways to use google sheets find and replace (all easy)
9 Ways to Use Google Sheets Find and Replace (All Easy)
February 16, 2023 - You should find all occurrences of the word “only” removed from the formulae (and thereby the results of the formulae). You can also use functions to have Google spreadsheets replace text. The SUBSTITUTE function is a Google Sheet replace function used to find and replace text in one or ...
🌐
Owox
owox.com › blog › articles › google sheets tips › mastering the substitute function in google sheets
Google Sheets SUBSTITUTE Function 2025: Replace Text with Precision
May 25, 2026 - This formula replaces the specified word, updates the review, and measures the text length. The calculated length is displayed in cell F3, as shown in the dataset. You can replace multiple values dynamically in Google Sheets by using SUBSTITUTE with INDEX.
🌐
Reddit
reddit.com › r/googlesheets › using find and replace function inside a formula to replace a column
r/googlesheets on Reddit: Using find and replace function inside a formula to replace a column
March 23, 2024 -

Hi, I'm aware it's possible to use the Find and Replace (ctrl+H) function for formulas as well, but I can't seem to figure out how to use it on just column letters, is it even possible? Basically my rows look like this:

=COUNTIFS(N3:N27;">="&$AR3;N3:N27;"<="&$AS3)

=COUNTIFS(N28:N52;">="&$AR4;N28:N52;"<="&$AS4)

=COUNTIFS(N53:N77;">="&$AR5;N53:N77;"<="&$AS5)

and on and on...

So the range is always different, so I can't just replace Nx or Nxy and be done with it.

Ideally, I'd just need to tell the Find and Replace function it should change all Ns to Bs, so it looks like this:

=COUNTIFS(B3:B27;">="&$AR3;B3:B27;"<="&$AS3)

=COUNTIFS(B28:B52;">="&$AR4;B28:B52;"<="&$AS4)

=COUNTIFS(B53:B77;">="&$AR5;B53:B77;"<="&$AS5)

Thanks!

🌐
Checksheet
checksheet.app › google-sheets-formulas › replace
REPLACE Google Sheets Formula | Check Sheet
The SUBSTITUTE formula is used to replace specific text in a string with new text. It is commonly used to replace all occurrences of a certain word or character within a larger string.