Primary and Secondary Sort of Sub-Form

G

Guest

I have 3 tables, EmployeeData, OrgData, ClubData. I have a form (it doubles
as the input for the tables) which displays the Employees information in the
main part of the form. It has a key field 'Track' which ties it to the
OrgData table which in turn has a key field 'Clubs' which ties it to the
ClubData table. An employee can belong to multiple Clubs. The last to
tables are displayed in a subform. They display the group the employee
belongs to and their review dates (up to 4 dates which = the 4 review fields).

How do I SORT the data to be displayed in the subform to reflect a
particular Club first and then followed by the remaining Clubs which are
sorted based on the most recent Review date?
 
D

Douglas J. Steele

Create a query that sorts the data the way you want it, and use the query as
the form's RecordSource rather than the table.
 
G

Guest

Thank You Douglas.

Douglas J. Steele said:
Create a query that sorts the data the way you want it, and use the query as
the form's RecordSource rather than the table.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top