Thanks for responding. But no I can't use the Default Value, because I want it to remain blank most of the time. I do have an After Update procedure:
Private Sub WorkDay1_AfterUpdate()
DoCmd.GoToControl "WorkDay1Reason"
End Sub
I was hope to get it to run here, because this is the only time that I will need it. I guess you need to see the form "running" to understand it. Basicaly when I make a change to WorkDay1, which is a text box, I want to go to WorkDay1Reason, which is a combo box. I would like the default like this, because these are the two most likely settings:
If WorkDay1 = 0 Then
WorkDay1Reason.ItemData(0)
Else
WorkDay1Reason.ItemData(6)
I have tried all afternoon to get the if into the above procedure, but so far nothing but error, error, error everywhere. I have looked in every help thing I can find, but nothing is helping. Thanks again for the response.