regexif-statementgoogle-sheetsmatchconditional-formatting

Sheets, conditional formatting


I am looking to create a conditional formatting function that will highlight "C2:E2" if "E2" > 5000 & "B2" does not contain the word "treasury".


Solution

  • try on range C2:E:

    =($E2>5000)*(NOT(REGEXMATCH(LOWER($B2), "treasury")))