T
Tom Scanlin
I'm trying to place a "Yes" value in a check box [CompleteTdy] if a
preceding form field [ActualCost] is > 0 (Don't ask me why I have to do
this, I realize I can create the value in a query but they want a check box
on the form...go figure)
Obviously, I must have missed something. Can you please lend a hand?
Private Sub ActualCost_Exit(Cancel As Integer)
Dim CompleteTdy As CheckBox
Dim ActualCost as Currency
CompleteTdy = IIf(ActualCost > 0, [CompleteTdy] = -1, CompleteTdy]= 0)
End Sub
Thanks
Tom
preceding form field [ActualCost] is > 0 (Don't ask me why I have to do
this, I realize I can create the value in a query but they want a check box
on the form...go figure)
Obviously, I must have missed something. Can you please lend a hand?
Private Sub ActualCost_Exit(Cancel As Integer)
Dim CompleteTdy As CheckBox
Dim ActualCost as Currency
CompleteTdy = IIf(ActualCost > 0, [CompleteTdy] = -1, CompleteTdy]= 0)
End Sub
Thanks
Tom