Hi,
I have two fields on my form where I am trying to set values depending if field [Answer] is "Yes" or "No".
Field one [Answer] contaings a drop down box "Yes" and "No". Set up on my table as text and a combo box w/Yes and No.
Field two [Points] should contain the set value. Set up on my table as number.
If [Answer] = "Yes" [Points] = 5
If [Answer] = "No" [Points] = 0
I tried a couple of things on the control source of the textbox but it didn't work...
IIf([Answer] = "Yes", [Points], 5,0) It didn't work
I also tried...
Private Sub Points_AfterUpdate()
If Me.Answer = Yes Then
Me.Points = 5
Else
' do nothing
End If
End Sub
It didn't work either, is there anything else that I can do?
I have two fields on my form where I am trying to set values depending if field [Answer] is "Yes" or "No".
Field one [Answer] contaings a drop down box "Yes" and "No". Set up on my table as text and a combo box w/Yes and No.
Field two [Points] should contain the set value. Set up on my table as number.
If [Answer] = "Yes" [Points] = 5
If [Answer] = "No" [Points] = 0
I tried a couple of things on the control source of the textbox but it didn't work...
IIf([Answer] = "Yes", [Points], 5,0) It didn't work
I also tried...
Private Sub Points_AfterUpdate()
If Me.Answer = Yes Then
Me.Points = 5
Else
' do nothing
End If
End Sub
It didn't work either, is there anything else that I can do?