Hi,
I have been trying to format my table to highlight rows if TWO conditions are met
1. A checkbox in a cell is TRUE (checked)
2. A cell in the table contains a partial text string (the string is present in another cell)
The conditional formatting formula is as follows and it works if I only reference to the string in the cell BUT if I add a wildcard in the formula "*" it does not work
The formula that works is:
=IF(AND($F$1=TRUE;$E6=$E$1);TRUE;FALSE)
The formula that does not work is:
=IF(AND($F$1=TRUE;$E6="*"&$E$1&"*");TRUE;FALSE)
F1 contains the "new" checkbox
$E6 (cell/column) contains names with separation commas (can be multiple names and I want to highlight a row if the name from cell E1 is found in the cell/column $E6)
Any hints to what can be wrong?
Bookmarks