I have a control on my report [ServiceConfNo] that lists HOME, WORK, HIS CELL or HER CELL.
How can I use this value to turn off or on one of 4 checkboxes on the report?
This is what I have on the ON LOAD of the report:
CODE
If Me.ServiceConfNo = "HOME" Then
Me.Conf1 = true
Else
If Me.ServiceConfNo = "WORK" Then
Me.Conf2 = true
Else
If Me.ServiceConfNo = "HIS CELL" Then
Me.Conf3 = true
Else
If Me.ServiceConfNo = "HER CELL" Then
Me.Conf4 = true
End If
End If
End If
End If
Me.Conf1 = true
Else
If Me.ServiceConfNo = "WORK" Then
Me.Conf2 = true
Else
If Me.ServiceConfNo = "HIS CELL" Then
Me.Conf3 = true
Else
If Me.ServiceConfNo = "HER CELL" Then
Me.Conf4 = true
End If
End If
End If
End If
I'm hoping this is something simple, but just can't put my finger on it.
Thanks for any pointers,
Rick
