DJF:
I am sure there are others on here that are far better than I in access and
could answer you post with a much more cleaver and better solution than I but
here is my attempt at an answer.
What you would need to do is change the back color or each field in the row
when you complete date is not null. What you could try is entering code
similar to the below in the after update event of the complete date field.
If CompleteDate <> ҠThen
Me.FieldName1.BackColor = 12632256
Me.FieldName2.BackColor = 12632256
Me.FieldName3.BackColor = 12632256
Me.FieldName4.BackColor = 12632256
Me.FieldName5.BackColor = 12632256
Else
Me.FieldName1.BackColor = -2147483643
Me.FieldName2.BackColor = -2147483643
Me.FieldName3.BackColor = -2147483643
Me.FieldName4.BackColor = -2147483643
Me.FieldName5.BackColor = -2147483643
End if
This would cause the back color of fieldname1 to fieldname5 to change to
gray when some one changes the date from null and leave it white if the value
is null.
Hope this helps,
FatMan