Let me see if I can explain it better. A current form is tied to three
tables. Table one is member table with demographical information. Table two
is a reciepient table with demographical information. And table three is
receipt information. My goal is to somehow state that if a box is checked use
member demographics, and if unchecked use recipient information.

Signature
Karen K
> Not sure if that what you are asking for, if it's not please explain more of
> what you are trying to do.
[quoted text clipped - 10 lines]
> > Does anyone know how to write code so that if a box is checked, it will pull
> > information from another table?
Ofer Cohen - 15 May 2007 19:08 GMT
I had a small mistake, I used ControlSource instead of Record Source
On the AfterUpdate event of the check box try something like, you can create
a text box in the form to state which table you are using
If Nz(Me.[CheckBox],False) = True Then
Me.RecordSource= "Select * From member"
Me.[TextBoxName] = "member"
Else
Me.RecordSource = "Select * From recipient"
Me.[TextBoxName] = "recipient"
End If
Me.Requery

Signature
Good Luck
BS"D
> Let me see if I can explain it better. A current form is tied to three
> tables. Table one is member table with demographical information. Table two
[quoted text clipped - 16 lines]
> > > Does anyone know how to write code so that if a box is checked, it will pull
> > > information from another table?