Hopefully this is not too trivial to post on this board, but it's making me crazy! I have a termination date field in my table and and a field on a form that is visible only if the employee is terminated (date filled in). My expression is as follows:
If Me![TermDate] <> Null Then
Me![field].Visible = True
Me![TermDate].Visible = True
Else
Me![field].Visible = False
Me![TermDate].Visible = False
End If
I've tried stepping through this code and it won't recognizes the <> Null.
Any ideas?
Thanks!!!!
If Me![TermDate] <> Null Then
Me![field].Visible = True
Me![TermDate].Visible = True
Else
Me![field].Visible = False
Me![TermDate].Visible = False
End If
I've tried stepping through this code and it won't recognizes the <> Null.
Any ideas?
Thanks!!!!