Google-sheets – How to make the “Text contains” evaluate any word written in the cell

conditional formattingformulasgoogle sheetsregextext formatting

I just want the cell in Google Sheets to change its fill color when any text is inputted in the cell? But it has to be text excluding numbers. Please help!

Best Answer

=IF(NOT(REGEXMATCH(A1,"[0-9]")),1)*(A1<>"")

0


EU syntax:

=IF(NOT(REGEXMATCH(A1;"[0-9]"));1)*(A1<>"")