Forum Discussion
Muemi
Sep 08, 2020Copper Contributor
Conditional formatting row by row (text contains)
I would like to colour cells which contain the word from column A but only those which are in the same row. There are over 10000 rows, so it should be easily adaptable to other rows. Example: 1st d...
- Sep 08, 2020
As a cosmetic comment, simple
=SEARCH($A1,B1)If it returns an error format trigger won't work
Bennadeau
Sep 08, 2020Iron Contributor
Hi Muemin,
Try this in your conditional formatting. =IF(SEARCH($A1,B1)>0,TRUE,FALSE)
And apply it to all your cells.
SergeiBaklan
Sep 08, 2020Diamond Contributor
As a cosmetic comment, simple
=SEARCH($A1,B1)
If it returns an error format trigger won't work
- SergeiBaklanSep 09, 2020Diamond Contributor
Muemi , you are welcome