Okay - I am not explaining myself correctly. If date field 1 has a date,
than I want date field 2 to be greyed out. If date field 1 is empty, than I
want date field 2 to be bolded in red font. Does this make sense. Thank you
again for your help.
> Well, you have me totally confused too.
>
[quoted text clipped - 21 lines]
> >> > and it is not working: IF(IsNotNull([CONTROL NAME])) - text different
> >> > color. Any help will be greatly appreciated. Thank you.
1. In form design view, select your Date2 field
2. Choose CF on the Format menu.
3. Set Condition 1 to :
Expression [Date1] Is Null
and choose the red font and bold icon.
CF cannot disable the field, so to give the greyed out appearance, you would
just choose the grey A on the toolbar in form design view.
(If there are actually more of these date fields, it may indicate that you
need a related table where you have many related records (one date in each
record) instead of many fields in this table.)

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> Okay - I am not explaining myself correctly. If date field 1 has a date,
> than I want date field 2 to be greyed out. If date field 1 is empty, than
[quoted text clipped - 33 lines]
>> >> > different
>> >> > color. Any help will be greatly appreciated. Thank you.
missinglinq - 16 Mar 2007 13:42 GMT
BTW,
IsNotNull
isn't a VBA function! Correct syntax for this in VBA would be
Not IsNull

Signature
There's ALWAYS more than one way to skin a cat!
Answers/posts based on Access 2000