Sorry, this sounds like a basic thing, but I haven’t found how to do it or a post. I just want to get certain format in a table if the text contains some text. Let’s say I would like to have green color if the text has “apple” on the row.
With that same setup Joseph_B posted, try this equation for the conditional formatting:
Fruits.Lower().RegexMatch("apple")
Fruits is the column you’re checking. Lower() makes everything lowercase to make sure you find every match. RegexMatch() is the Regular Expression Matching that finds the text even in a sentence.