Forum Discussion
Sarah Prouty
Oct 05, 2018Copper Contributor
Help with Conditional formatting
I am trying to highlight A2 in pink when E2 or F2 are blank. How can I achieve this? I've tried a number of ways to create the formula but none are working for me so need your expert advise. :) Thank...
- Oct 05, 2018
Hi Sarah,
You don't need to IF function just use OR function as below syntax:
=OR($E$2="",$F$2="")
This is because the Conditional Formatting rule only needs a boolean value (TRUE/FALSE).
Hope that helps
Haytham Amairah
Oct 05, 2018Silver Contributor
Hi Sarah,
You don't need to IF function just use OR function as below syntax:
=OR($E$2="",$F$2="")
This is because the Conditional Formatting rule only needs a boolean value (TRUE/FALSE).
Hope that helps
Sarah Prouty
Oct 08, 2018Copper Contributor
It worked!! Thank you for keeping me sane, lol. I needed that!