A
Access User
I have a combo box which has three possible values, e.g "Poor", "Fair" and
"Good". I have conditionally formatted each so that when they choose Poor
it's got a green background, Fair gets a yellow and Poor gets a red
background treatment. When they open the form they see an empty data entry
field. The field is required entry. I would like the background to be Red
when they open the form to grab their attention.
I have tried the following VBA but get a 424 error:
Private Sub Form_Load()
If Me.TECHADEQ.Value Is Null Then
Me![TECHADEQ].BackColor = vbRed
End If
End Sub
Is there an other approach?
"Good". I have conditionally formatted each so that when they choose Poor
it's got a green background, Fair gets a yellow and Poor gets a red
background treatment. When they open the form they see an empty data entry
field. The field is required entry. I would like the background to be Red
when they open the form to grab their attention.
I have tried the following VBA but get a 424 error:
Private Sub Form_Load()
If Me.TECHADEQ.Value Is Null Then
Me![TECHADEQ].BackColor = vbRed
End If
End Sub
Is there an other approach?