Find and replace text in Google Sheets using TextFinder and Apps Script
If you regularly use spreadsheets, you've probably used the "find and replace" feature at some point. This feature lets you find text in your spreadsheet and optionally replace some or all occurrences of that text with some other value. To manually find and replace text, select Edit —> Find and replace.
You can also use Apps Script to programmatically find and replace text. This is especially useful if you're automating some process where you need to "clean the data" in your spreadsheet before it is used for further processing.
Spreadsheets can have all sorts of inconsistencies that make it difficult to analyze the data in them. For example, a spreadsheet containing user entered data might contain "CA", "Ca", "California", and "CALIFORNIA", that all represent the state of California in the United States.
Leaving the data as-is could lead to incorrect inferences since formulas consuming this data might expect states to be represented using the two-letter abbreviations that USPS uses. Therefore, to produce correct results, you might want to replace "Ca", "California" and "Cali" with "CA" before performing the analysis.
In this tutorial, I will show you how to use Apps Script to automate this "find and replace" functionality.
Prerequisites
This tutorial assumes that you're familiar with the basics of Apps Script and Google Sheets. If you're new to Apps Script, I've created a series of introductory tutorials that will help you learn coding using Google Sheets and Apps Script.
Find and replace text in Google Sheets using TextFinder
Google Apps Script provides a TextFinder
feature that makes it easy to programmatically find and replace text in your Google Sheets spreadsheet. Here is a simple example that illustrates how it works. The function searchAndReplace()
accepts the search term and its replacement as inputs and then replaces all occurrences of the search term with the value that should replace it.
function searchAndReplace(searchTerm, replacement) {
SpreadsheetApp.getActive()
.createTextFinder(searchTerm)
.matchEntireCell(true)
.matchCase(true)
.matchFormulaText(false)
.ignoreDiacritics(false)
.replaceAllWith(replacement);
}
How does the code work?
I'll explain how the code works step by step. The first step is to get a reference to the spreadsheet.
Note
This assumes that the script is "bound" to a Google Sheets spreadsheet. That is, you created the script by opening the script editor from a Google Sheets spreadsheet by selecting Extensions —> Apps Script.
SpreadsheetApp.getActive()
Then the next step is to create a "TextFinder" which will help you find and replace text in the Google Sheets spreadsheet. You'll specify the search term when creating the text finder.
SpreadsheetApp.getActive()
.createTextFinder(searchTerm)
The next few steps will configure the text finder based on your use case. For example, you'll set matchEntireCell
to true
if you only want a cell to match if the search term matches the entire value in the cell. If matchEntireCell
is set to false
, cells containing the search term will match. For example, a cell containing "CANADA" will match when searching for "CA" if matchEntireCell
is set to false (
"CA" is the first two letters of "CANADA")
but it won't match when matchEntireCell
is set to true
.
SpreadsheetApp.getActive()
.createTextFinder(searchTerm)
.matchEntireCell(true)
You can specify if the matching should be case sensitive or not. In this case, I am configuring it to be case sensitive.
SpreadsheetApp.getActive()
.createTextFinder(searchTerm)
.matchEntireCell(true)
.matchCase(true)
You can also find occurrences of the search terms within formulas themselves. Suppose you're trying to find cells where a specific function is used, you'll want to search within the formula definitions to find these cells. Simply searching the values (i.e. what you see in the spreadsheet) will not help in this case. Set matchFormulaText
to true
if you want to search within the formula text.
SpreadsheetApp.getActive()
.createTextFinder(searchTerm)
.matchEntireCell(true)
.matchCase(true)
.matchFormulaText(false)
Some words and names have special characters such as the umlaut (ö) and you can ignore them while matching by setting ignoreDiacritics
to true
. When you set ignoreDiacritics
to true
, "ö" will be treated as "o".
SpreadsheetApp.getActive()
.createTextFinder(searchTerm)
.matchEntireCell(true)
.matchCase(true)
.matchFormulaText(false)
.ignoreDiacritics(false)
Once you configure the text finder, you can replace all occurrences of the search term with the replacement.
SpreadsheetApp.getActive()
.createTextFinder(searchTerm)
.matchEntireCell(true)
.matchCase(true)
.matchFormulaText(false)
.ignoreDiacritics(false)
.replaceAllWith(replacement);
Important: Don't forget the semicolon at the end of .replaceAllWith(replacement);
to complete the statement.
Find all occurrences of a search term in Google Sheets using the findAll() method
You can use the findAll()
method of the text finder to find all occurrences of the search term. The code below finds cells containing "C" in the spreadsheet and sets their background color to yellow.
//Find cells that contain "C"
let ranges = SpreadsheetApp.getActive()
.createTextFinder("C")
.matchEntireCell(true)
.matchCase(true)
.matchFormulaText(false)
.ignoreDiacritics(true)
.findAll();
//Set the background colors of those cells to yellow.
ranges.forEach(function (range) {
range.setBackground("yellow");
});
Configure the scope where the search should be performed
You can configure where TextFinder should look for the search term. You can configure the scope of the search to be the entire spreadsheet, a specific sheet within it or even a specific range. In order to configure this, simply create the text finder object from the scope it should use.
Search for text in the entire spreadsheet
Here the createTextFinder() method is invoked on the spreadsheet object so the search will be performed on the entire spreadsheet.
let textFinder = SpreadsheetApp.getActive().createTextFinder("someSearchTerm");
Search for text in a specific sheet
You can restrict the scope of the search to a specific sheet in your Google Sheets spreadsheet. In the code below, the search will be performed only within the sheet named "Sheet1".
let textFinder = SpreadsheetApp.getActive().getSheetByName("Sheet1").createTextFinder("someSearchTerm");
Search for text in a specific range
Finally, you can restrict the scope of the search to a specific range in your Google Sheets spreadsheet. In the code below, the search will be performed only within the range named "Data".
let textFinder = SpreadsheetApp.getActive().getRangeByName("Data").createTextFinder("someSearchTerm");
Conclusion
In this tutorial you learned how to programmatically find and replace text in your Google Sheets spreadsheet using TextFinder in Apps Script. Thanks for reading!
Master Google Sheets Automation
I'd appreciate any feedback you can give me regarding this post.
Was it useful? Are there any errors or was something confusing? Would you like me to write a post about a related topic? Any other feedback is also welcome. Thank you so much!