Hi Everyone: I have a one to many relationship. I want a report which prints only the last record of the many side. My data is as follows:
TblOne
ID_# (primary key, no duplicates)(One to many)
Other Info
TblTwo
AssessID (primary key) (autonumber)
ID_# (Primary key) (duplicates ok)(many to one)
So, TblTwo would have many records for a specific ID_#, but I only want the last AssessID to be printed. How can I do this automatically, without specifically choosing the latest AssessID for an ID_#?
Sophia
TblOne
ID_# (primary key, no duplicates)(One to many)
Other Info
TblTwo
AssessID (primary key) (autonumber)
ID_# (Primary key) (duplicates ok)(many to one)
So, TblTwo would have many records for a specific ID_#, but I only want the last AssessID to be printed. How can I do this automatically, without specifically choosing the latest AssessID for an ID_#?
Sophia