A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hello there -
I believe the easiest way is to create another column to check the conditions.
For example, you can enter this in cell H2 (assuming it is not occupied yet):
H2 = IF(ISBLANK(G2), IF(F2>=NOW(), 2,0),1)
In this way, H2 will equal 1 whenever G2 is not blank, equal 2 whenever G2 is blank and F2 has passed today's date, and equals 0 otherwise.
Then, you can apply conditional formatting to F2 using value in H2.
Does this help your question?