Please try the following formula in Custom formula is

=IFERROR(IF(MATCH("*"&INDIRECT("H5")&"*",B2,0)>0,true,),false)

Answer from marikamitsos on Stack Exchange
🌐
Excel Insider
excelinsider.com › home › our blog › google sheets functions › how to check if a cell contains partial text in google sheets
How to Check If a Cell Contains Partial Text in Google Sheets - Excel Insider
June 26, 2025 - ... When working with text data ... is to use the SEARCH function, which looks for the position of a substring within a text string, combined with ISNUMBER, which converts that search result into a simple TRUE or FALSE...
🌐
Google Support
support.google.com › docs › thread › 296695635 › is-there-a-formula-to-check-if-a-cell-contains-certain-text
is there a formula to check if a cell contains certain text? - Google Docs Editors Community
September 14, 2024 - Skip to main content · Google Docs Editors Help · Sign in · Google Help · Help Center · Community · Google Docs Editors · Terms of Service · Submit feedback · Send feedback on
Discussions

Help filtering for partial text
try: =FILTER(Titles!A:C,regexmatch(Titles!C:C,"(?i)marketing")) More on reddit.com
🌐 r/sheets
3
4
February 24, 2023
If partial text match, show certain data in this cell - Google Docs Editors Community
Skip to main content · Google Docs Editors Help · Sign in · Google Help · Help Center · Community · Google Docs Editors · Terms of Service · Submit feedback · Send feedback on More on support.google.com
🌐 support.google.com
March 26, 2024
google sheets - Conditional Format if cell contains partial match for text - Web Applications Stack Exchange
1 Script to search my Google Sheets for a partial text match in a cell and if it contains a match then clear or delete entire cell More on webapps.stackexchange.com
🌐 webapps.stackexchange.com
November 1, 2020
Checking for partial matches in Google Sheets - Stack Overflow
I am trying to come up with a solution to check if the values in column E are partially contained in column B. However, as can be seen in the picture below, the code I have written yields incorrect More on stackoverflow.com
🌐 stackoverflow.com
🌐
Reddit
reddit.com › r/sheets › help filtering for partial text
r/sheets on Reddit: Help filtering for partial text
February 24, 2023 -

Hi all,

I have a formula that pulls over a specific row from another tab if the column in that row contains specific text. I want to know if it's possible to also do this, but pull over data if the cell contains that text (so it's not exact).

For example, if I entered marketing into the formula, it would pull over Marketing Director etc..

Here is the formula I currently have, and would appreciate any help. Titles is the name of the tab it's searching.

=FILTER(Titles!A:C,Titles!C:C="marketing")

🌐
InfoInspired
infoinspired.com › home › google docs › spreadsheet › contains substring match in google sheets query for partial match
CONTAINS Substring Match in Google Sheets Query for Partial Match
February 4, 2026 - ... This formula returns only the rows that partially match “Mango”. ... This returns all rows where the substring magazine appears anywhere in column A. The CONTAINS substring match checks whether a substring exists anywhere in the text:
🌐
Google Support
support.google.com › docs › thread › 266037327 › if-partial-text-match-show-certain-data-in-this-cell
If partial text match, show certain data in this cell - Google Docs Editors Community
March 26, 2024 - Skip to main content · Google Docs Editors Help · Sign in · Google Help · Help Center · Community · Google Docs Editors · Terms of Service · Submit feedback · Send feedback on
Find elsewhere
🌐
Latenode
community.latenode.com › other questions › google sheets
How to locate partial text matches in a Google Sheets column? - Google Sheets - Latenode Official Community
April 21, 2025 - I’m working on a Google Sheets project and I’m stuck. I’ve got a column with a mix of text cells and empty ones. What I’m trying to do is find the first time a specific word shows up, but here’s the catch – it doesn’t have to be an exact match. I know about Index and Match for ...
🌐
InfoInspired
infoinspired.com › home › google docs › spreadsheet › partial match in if function in google sheets
Partial Match in IF Function in Google Sheets
March 24, 2024 - In other words, I need an IF formula in cell C2 that evaluates/tests whether cell A1 contains “Gr. 0001”, and returns a tick mark if it does. ... This formula will return blank since the value in cell A1 is “Gr. 0001.55”. If you think you can use wildcard characters to do a partial match in the IF function in Google Sheets, you are mistaken!
🌐
Spreadsheet Point
spreadsheetpoint.com › home › formula posts › if contains google sheets: search + regexmatch
If Cell Contains Text in Google Sheets, Here Are the Fastest Formulas That Actually Work
There isn’t a specific IF CONTAINS function in Google Sheets. However, you can combine the IF and the SEARCH (or REGEXMATCH) function to determine whether a cell contains a particular value.
Published: January 9, 2026
🌐
Reddit
reddit.com › r/googlesheets › filtering by partial string of text
r/googlesheets on Reddit: Filtering by partial string of text
September 7, 2024 -

Hi everyone

I would like a formula that pulls over a specific row from another tab if the column in that row contains specific text. Specifically, I would like to pull the row where the cell contains part of that text, but not necessarily the whole thing.

For example, I want to pull every row that contains 'April'. My raw data is set up like: 1 April 2024. I want to be able to enter 'April' into the formula, and it pulls over every row containing April.

Here is the formula I have been trying, but haven't been able to get it to work. ('Functions for Data' is the name of my other tab I am pulling from.)

=FILTER('Functions for Data'!O12:U200,REGEXMATCH('Functions for Data'!O12:O200,"apr"))

Column O is the column that contains the dates. And it has plenty of April's. I usually get this error: No matches are found in FILTER evaluation.

Thanks!!

🌐
Excel Insider
excelinsider.com › home › our blog › google sheets functions › return value in another cell if cell contains text in google sheets
Return Value in Another Cell If Cell Contains Text in Google Sheets - Excel Insider
June 27, 2025 - Return Value in Another Cell If Cell Contains Text in Google Sheets [Make a Copy] Use SEARCH(“text”, A1) or REGEXMATCH(A1, “text”) to detect if a word or phrase exists within a cell, even partially.
🌐
Statology
statology.org › home › google sheets: a simple formula for “if contains”
Google Sheets: A Simple Formula for "If Contains"
March 31, 2025 - As we’ve seen from the examples above, there are two main approaches to consider: For exact matches: Use simpler IF() function with equality operator: =IF(A2=”Lakers”, 1, 0) For partial matches: Use REGEXMATCH() when you need to find text ...
🌐
Stack Exchange
webapps.stackexchange.com › questions › 154450 › script-to-search-my-google-sheets-for-a-partial-text-match-in-a-cell-and-if-it-c
Script to search my Google Sheets for a partial text match in a cell and if it contains a match then clear or delete entire cell - Web Applications Stack Exchange
May 16, 2021 - function clearCellsThatContain_Print_() { clearCells(/Print/i); } function clearCells(searchFor, sheet = SpreadsheetApp.getActiveSheet()) { if (!searchFor) return; const cellsToClear = []; sheet.getDataRange().getDisplayValues() .forEach((row, rowIndex) => row .forEach((value, columnIndex) => { if (value.match(searchFor)) { cellsToClear.push(sheet.getRange(rowIndex + 1, columnIndex + 1)); } }) ); cellsToClear .forEach(cell => cell.clearContent()); } The searchFor parameter should be a regular expression. You can also use a normal text string, as long as it does not contain any characters that
🌐
KeyCuts
thekeycuts.com › home › dear analyst #133: find or check if a cell contains text from a list of values or partial matching text in a list (3 methods)
Dear Analyst #133: Find or check if a cell contains text from a list of values or partial matching text in a list (3 methods) •
December 2, 2024 - Both of these sentences contain the name “Will.” But why does B3 say false? “Carlton” exists in the sentence. As you might’ve guessed, the ISNUMBER function is only searching for the name “Will” in each sentence as the cell reference in the SEARCH function changes. Recall that we got a bunch of #VALUE errors in the last formula. What we now need Google Sheets to do is go through each of these values in the array and ask if it’s a number:
🌐
Valparaiso University
my-test.valpo.edu › onetouch navy technology › navy quick link guide › navy eval writer guide › 5 navy bol tips › 5 navy notre dame clashes › old navy jackets on sale now › is pete hegseth a navy seal › 5 facts pla navy › homewood suites navy yard hotel › old navy joggers for comfortable wear
Google Sheets If Cell Contains Partial Text Formula
December 23, 2024 - The syntax of the CONTAINS function is as follows: ... This formula searches for the word "google" within cell A1 and returns TRUE if the text is found, and FALSE otherwise. In this article, we've explored the various formulas and techniques to search for partial text in Google Sheets.