Forum Discussion
littlebethan
Apr 25, 2023Copper Contributor
Conditional Formatting with 2 Variables where one is cell blank
Hi, Currently trying (and failing) to conditionally formatting a certain cell in a spreadsheet. What I want C1098 to do is turn green IF there is any text in F1098 AND C1098 is blank. Any ideas? ...
- Apr 25, 2023n the formula field, enter the following formula:
=AND(ISBLANK(C1098), NOT(ISBLANK(F1098)))
Cell C1098 should turn green if there is any text in F1098 and C1098 is blank.
I hope this helps!
NikolinoDE
Apr 25, 2023Gold Contributor
n the formula field, enter the following formula:
=AND(ISBLANK(C1098), NOT(ISBLANK(F1098)))
Cell C1098 should turn green if there is any text in F1098 and C1098 is blank.
I hope this helps!
=AND(ISBLANK(C1098), NOT(ISBLANK(F1098)))
Cell C1098 should turn green if there is any text in F1098 and C1098 is blank.
I hope this helps!
littlebethan
Apr 25, 2023Copper Contributor
Thankyou so much! Fixed the problem immediately 🙂
- NikolinoDEApr 25, 2023Gold ContributorI am glad that I could help you with your project.
I wish you continued success with Excel!