A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
In your equations for conditional formatting I would usethe following, on the assumption that E3 has a true date in it.
=AND($D$3<10,TODAY()>$E$3)
=AND($D$3>=10,TODAY()<=$E$3)
Excel dates are expressed as a number, so by comparing today to a text string (which is what happens when you use " marks) it will always be false.
Rik_UK Please mark the message or messages that answer your question as the "Answer" or vote if a reply has been helpful.