Sample Database: LinkingTwoSubforms.zip (26K)
Microsoft Access makes it easy to see related records on forms. A simple Access form has a record source displaying data from a table or query. The form can be displayed in:
One of the most powerful features of displaying data is the use of subforms. A subform is a form with its own data source that is embedded in another "master" form.
Subforms provide a powerful way to easily see related data, especially one-to-many relationships, without writing code. Access automatically filters the data in the subform based on data in the master form. This is accomplished by setting the Link Master Fields and Link Child Fields properties of a subform.
In the sample database, the form frmSimple shows an example where the form's recordsource is the master table (tblMaster) and the subform (subDetail) displays its corresponding records:
The subform only displays the records for one value in the MasterID field. To do this, we:
Example of Setting Link Master and Link Child Fields
For situations where you want to filter on more than one field, the Link Master Fields and Link Child Fields can contain values separated by semicolons. Just match them in the order desired.
As a habit, one should always reference the control name rather than the field name for the Link Master Field. For more information, read Microsoft Access Subforms Master Link Fields.
For instance, you may want to show all the master records and as the user moves through the list, the corresponding records appear in the detail subform:
Fortunately, you can easily do this by just setting some properties without writing any VBA code!
To do this, we create an unbound (no recordsource) form and put two subforms in it (look at the frmParent form in the sample database).
The first subform (frmMaster) is the list of master records, and the second (frmDetail) contains the details.
We synchronize the subforms using the Link Child Fields and Link Master Fields properties of the detail subform.
In a regular main to subform design, the Link Master Fields property would be based on a control on the main form. In the two subforms scenario, the second subform is filtered on a value in the first subform. Unfortunately, the subform's Link Master Fields property cannot directly reference a field in the first subform. It can only reference a field in its parent form.
Fortunately, there's a simple workaround. Create an intermediate text box on the main form for the LinkMaster value. This references the current record in the master subform, then the detail subform can link to that value. By making this control invisible, your users won't see this link.
To reference a value in a subform, use the following syntax for the text box's Control Source property:
=[subFormName].[Form]![ControlName]
where subFormName is the name of your master subform control, and ControlName is the name of your control that the detail records are filtered.
In the sample database, this becomes:
=[subMaster].[Form]![txtID]
Now that the master value is exposed, we call this control 'txtMasterID' and use it as the Link Master Field for the second subform.
It's good to keep this text box visible while you design and test the form. Once it's working, set its Visible property to No so your users don't see the magic you've created!
Good luck!
Strategic Overview
Microsoft Access within an Organization's Database Strategy
How many simultaneous Microsoft Access users?
Blaming Microsoft Access instead of the Developer
Microsoft Access Version Feature Differences
Microsoft Access Versions, Service Packs and Updates
Microsoft Office 365 Access Update Version Releases
Top 14 Features Added with MS Access 2007
Taking Over Legacy MS Access Databases
Winner of Every Best Access Add-in Award
Set AutoNumber Starting Number Other than 1
Avoid Unnecessary or Duplicate Indexes
Copy Command Button and Keep Picture
Module VBA to Forms and Controls
Subform Reference to Control Rather than Field
Suppress Page Headers and Footers on the First Page of Your Report
Annual Monthly Crosstab Columns
Add Buttons to the Quick Access Toolbar
Collapse the Office Ribbon for more space
Avoid Exits in the Body of a Procedure
Send Emails with DoCmd.SendObject
Error Handling and Debugging Techniques
Error Number and Description Reference
Remote Desktop Connection Setup
Terminal Services and RemoteApp Deployment
Missing Package & Deployment Wizard
Remove 'Save to SharePoint Site' Prompt from an Access Database
Class Not Registered Run-time Error -2147221164
Microsoft Access to SQL Server Upsizing Center
When and How to Upsize Access to SQL Server
SQL Server Express Versions and Downloads
Deploying MS Access Linked to SQL Azure
SQL Server Azure Usage and DTU Limits