I created table that contains membership information:
ID -> [AutoNumber]
GroupNo -> [Text] 3 characters
Position -> [Text] 2 characters
LastName -> [Text] 50 characters
FirstName -> [Text] 50 characters
Age -> [Number] Byte
The [GroupNo] represents the group in which the members belong. The [Position] represents the position in the group.
Here are some examples:
McLeod Patricia 012 03 20
Campeau John 012 01 31
Armstrong Jack 012 02 9
Hahn Liz 023 03 32
McNiel George 023 02 43
Andrus Audrey 035 03 7
The members may be stored in the table in any order:
McLeod Patricia 012 03 20
Hahn Liz 023 03 32
Armstrong Jack 012 02 9
Andrus Audrey 035 03 7
Campeau John 012 01 31
McNiel George 023 02 43
I want a report to display the list grouped by [GroupNo] and sorted by ascending [LastName] of the member with the lowest [Position] of every group:
Campeau John 042 01 31
Armstrong Jack 042 02 9
McLeod Patricia 042 03 20
McNiel George 023 02 43
Hahn Liz 023 03 32
Stevens Audrey 005 03 7
Can you help me with the grouping and sorting?
Thanks,
John
ID -> [AutoNumber]
GroupNo -> [Text] 3 characters
Position -> [Text] 2 characters
LastName -> [Text] 50 characters
FirstName -> [Text] 50 characters
Age -> [Number] Byte
The [GroupNo] represents the group in which the members belong. The [Position] represents the position in the group.
Here are some examples:
McLeod Patricia 012 03 20
Campeau John 012 01 31
Armstrong Jack 012 02 9
Hahn Liz 023 03 32
McNiel George 023 02 43
Andrus Audrey 035 03 7
The members may be stored in the table in any order:
McLeod Patricia 012 03 20
Hahn Liz 023 03 32
Armstrong Jack 012 02 9
Andrus Audrey 035 03 7
Campeau John 012 01 31
McNiel George 023 02 43
I want a report to display the list grouped by [GroupNo] and sorted by ascending [LastName] of the member with the lowest [Position] of every group:
Campeau John 042 01 31
Armstrong Jack 042 02 9
McLeod Patricia 042 03 20
McNiel George 023 02 43
Hahn Liz 023 03 32
Stevens Audrey 005 03 7
Can you help me with the grouping and sorting?
Thanks,
John