G
Guest
I am sort of a newbie 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 from another table called
[PayTable] Referencing the field [PayID] “1“ then placing the value=($35.00)
which is being drawn from the field called [Amount] into
Me![1-2weekIntro$] = "$35.00"
I hope this makes since.
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 from another table called
[PayTable] Referencing the field [PayID] “1“ then placing the value=($35.00)
which is being drawn from the field called [Amount] into
Me![1-2weekIntro$] = "$35.00"
I hope this makes since.