If I have a field "x" and if it is empty, i want the field to be Green,
however, if the field has a date and that date is less than 7/1/09, I want
the field to be Yellow.
any ideas?
What does the 7/1/09 represent here? A fixed value of July 1, 2009 or
the current date, whatever that current date is?
Right click on the Date congtrol. Select Conditional Formatting.
Set Condition1 to
Expression Is
Write [ControlName] Is Null
Select as the back color Green.
Click on Add
Set Condition2 to
FieldValue Is
choose
Less than
Write in the next box
Date()
Select as the back color, Yellow.
Save the changes
The above Condition2 assumes you meant to use the current date to
compare the value against.
If you mean to always use 7/1/2009 to compare to, change Date() to
#7/1/2009#.