I've got a continous form that I'm trying to make look cleaner, it has 12 time slots and 5 appointment slots for each time, plus a check box and an arrival time slot under. I'm trying to make the check box and arrival time box invisible if there is no appointment scheduled, but all that's happening right now is that either the check box and time slot on every record becomes invisible.
Here's my code:
If Not IsNull(Me.Outbound1) Then
Me.O1ArrTime.Visible = True
Me.O1Done.Visible = True
Else
Me.O1ArrTime.Visible = False
Me.O1Done.Visible = False
End If
The field Outbound1 is a text field. If it contains anything, it will be alpha-numeric (CRE40187 or HANY49070 or similar, all unique.
Help!
Here's my code:
If Not IsNull(Me.Outbound1) Then
Me.O1ArrTime.Visible = True
Me.O1Done.Visible = True
Else
Me.O1ArrTime.Visible = False
Me.O1Done.Visible = False
End If
The field Outbound1 is a text field. If it contains anything, it will be alpha-numeric (CRE40187 or HANY49070 or similar, all unique.
Help!