Please try the following formula in Custom formula is
=IFERROR(IF(MATCH("*"&INDIRECT("H5")&"*",B2,0)>0,true,),false)

Help filtering for partial text
If partial text match, show certain data in this cell - Google Docs Editors Community
google sheets - Conditional Format if cell contains partial match for text - Web Applications Stack Exchange
Checking for partial matches in Google Sheets - Stack Overflow
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")
You can use REGEXMATCH:
=IF(REGEXMATCH(A1, "sites"), 1, 0)
REGEXMATCH returns true if the first argument matches the regular expression given by the second argument. As long as the second argument has no regex special metacharacters (^ $ \ . * + ? ( ) [ ] { } |), this returns true if that argument is a substring of your string.
If you, as Ryan Shillington suggests, want to know the number of cells within a range that has "sites" in it, you might try:
=COUNTIF(A1:A100;"*sites*")
The * acts as a wildcard notion, so it will look for a match anywhere within the cell, not just an exact match for the whole cell.
I've also done this with a cell reference instead of "sites", but then you have to add wildcard-asterixes to the text in the cell.
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!!

