Not sure if that what you are asking for, if it's not please explain more of
what you are trying to do.
To change the record soure of the form, depend on the check box
If Nz(Me.[CheckBox],False) = True Then
Me.ControlSource = "Select * From TableName"
Else
Me.ControlSource = "Select * From TableName2"
End If
Me.Requery
--
Good Luck
BS"D
KarenMike said:
Does anyone know how to write code so that if a box is checked, it will pull
information from another table?