I have a question concerning conditional formatting in excel: I want to highlight one cell (lets say F1) in red but only if F6 it self is empty/blank and B1 is filled (it doesn't matter with what): How do I do it?
CodePudding user response:
Use
=AND(ISBLANK(F6),NOT(ISBLANK(B1)))
or
=AND(F6="",B1<>"")
in conditional formatting.
Result:
CodePudding user response:
- Select cell F1
- Open Conditional Formatting
- Select "New rule" then "Use a formula"
- Use a formula that results in TRUE or FALSE
- In your case use =AND(ISBLANK(F6);NOT(ISBLANK(B1)))