What is a datasheet form that displays linked records in a table like format located beneath your form?

Provided by Luke Chung, FMS President and John Litchfield, Database Analyst

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:

  • Single Form showing one record with each field formatted and aligned exactly where you like it
  • Continuous Form where each field is formatted and aligned like the Single Form, but multiple records are displayed to the height of the form
  • Datasheet which displays all the records like viewing a table

Using Microsoft Access Subforms

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.

  • The Master Field is the name of the control on the main form that the subform is filtered on
  • The Child Field is the name of the field (not the control) in the 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:

What is a datasheet form that displays linked records in a table like format located beneath your form?

The subform only displays the records for one value in the MasterID field. To do this, we:

  1. Rename the control for the MasterID field to txtMasterID. This differentiates between referencing the control or the underlying field. We want to reference the control.
  2. Assign this control to the subform's Link Master Fields property
  3. Assign the field in the subform's recordsource, MasterID, to the Link Child Fields property

What is a datasheet form that displays linked records in a table like format located beneath your form?

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.

Linking Two Microsoft Access Subforms Together

What if you want to show a list of the "master" records and the corresponding detail records of the current master record?

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:

What is a datasheet form that displays linked records in a table like format located beneath your form?

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.

Solution

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!

Is a datasheet form that displays linked records in a table like format?

A subform is a datasheet form that displays linked records in a table-like format.

What is a datasheet form?

A datasheet form lets you show information from more than one record at a time. The data is arranged in rows and columns and multiple records are displayed at a time. A datasheet is the visual representation of the data contained in a table, or of the results returned by a query.

What is datasheet view in table?

Datasheet View It provides a visual way to create a table. It is a simple view which arranges the data in rows and columns and allows to edit the data but not allows to change the format of the database other than minor changes such as insert or delete columns. 2.

How do you display table data in Access form?

On the Data tab of the property sheet, click the Source Object drop-down list, and then click the table or query that you want to display in the datasheet. For example, if you want to display data from the Orders table, click Table.