On 2002-08-27 13:00, Jeff in Holland wrote:
Does this make sense to anyone?
Your criteria seems a little vague. If I understand you right, select your range of dates, choose conditional formatting from the format menu, change the drop down to "formula is" and type or paste in
=AND(A1>=(TODAY()-2),A1<=(TODAY()+2))
(adjust A1 to the first cell in your range.
Click the format button and choose the format to your liking.
EDIT:
A simpler formula just occured to me. Instead you could also use
=ABS(A1-TODAY())<=2
This message was edited by IML on 2002-08-27 13:14