A
Adam
I am sort of a rookie when it comes to writing code. (So please simple English)
I am working on a form using checkboxes which will assign an amount into a
separate field.
Example:
Private Sub Ctl1_2weekIntro_AfterUpdate()
If Me![1-2weekIntro] = True Then
Me![1-2weekIntro$] = "$35.00"
Else
Me![1-2weekIntro$] = Null
End If
End Sub
What I would like it to do is have the code draw "$35.00" from another table
called [PayTable]. Referencing the [PayID] (1) and then placing the
value=($35.00) which is being drawn from the field called [Amount].
Thanks....
Adam
I am working on a form using checkboxes which will assign an amount into a
separate field.
Example:
Private Sub Ctl1_2weekIntro_AfterUpdate()
If Me![1-2weekIntro] = True Then
Me![1-2weekIntro$] = "$35.00"
Else
Me![1-2weekIntro$] = Null
End If
End Sub
What I would like it to do is have the code draw "$35.00" from another table
called [PayTable]. Referencing the [PayID] (1) and then placing the
value=($35.00) which is being drawn from the field called [Amount].
Thanks....
Adam