G
Guest
Okay, a bit of a fix here. I have two tables, Memberships and People and
forms to go with them.
People is like this:
People_ID People.Last_Name People_First_Name ...
Memberships is like this:
Membership_ID Person_ID ... (where Person_ID is an FK into People as
People_ID)
At the moment, when I use the Membership form, the order of the records
appearing is by People_ID. What I want is for the form to display the
records in order by First_Name, Last_Name.
The order by property in the form doesn't seem to accept things like
People.Last_Name or fancier SQL queries. I've also tried creating a new
field in the form which lists everyone in People in alpha order and ordering
by that, but that doesn't work either.
Any help would be greatly appreciated.
forms to go with them.
People is like this:
People_ID People.Last_Name People_First_Name ...
Memberships is like this:
Membership_ID Person_ID ... (where Person_ID is an FK into People as
People_ID)
At the moment, when I use the Membership form, the order of the records
appearing is by People_ID. What I want is for the form to display the
records in order by First_Name, Last_Name.
The order by property in the form doesn't seem to accept things like
People.Last_Name or fancier SQL queries. I've also tried creating a new
field in the form which lists everyone in People in alpha order and ordering
by that, but that doesn't work either.
Any help would be greatly appreciated.