I am trying to find the origin of some data from a form; specifically, what table or query it points to. Is there any way to know what table is being used? The control source tells me what fields are being pulled but not from what table.
How do I find origin of table from a form?
Collapse
X
-
Under the form properties, Data tab, there is a property call Record Source. In this property there will be the name of the table/query that the form is bound to, or SQL code. If it is SQL code, then it would start with the word SELECT. If this is the case, then right click on the property and select Zoom. Then all you have to do is find the word FROM and this will tell you the table/query(s) where the data is coming from.
Comment