
Originally Posted by
alansidman
A form may be bound to only one table or query. If you have other controls that you wish to display data for that is from a different table or query, then you will need to have a subform bound to that other object. You can then link the mainform and subform using a parent/child relationship linked on a common field.
Alan
I know there can only be one data source for the form. So if I have a control that I want to display data from a dataset other than the form source, I can't just indicate that in the control source for that control? I did something like this:
Code:
=[qryCapacityTable]![EquipmentCapacity]
There isn't a relationship between the form data and these seperate controls. i want them to be seperate, but still be able to display other data in these controls. Any other options since they aren't related?