This will be my first IF…Then.
What I want to set up is, if control1 is null, give it the value of control2. Both controls on the same form. Here’s what I came up with on the OnCurrent event for the form:
If [Control1] = Null Then
[Control2] = [Control1]
End IF
How do I make this work?
elizabeth