The simplest solution might be to leave the Comments table out of your
query, so you only get the record once, not once for every comment. Make
this query the source for your form, and use a subform to show the comments.
If that is not what you need, you could use a subquery to get the most
recent comment. Again, leave the comments table out of your query, and type
something like this into the Field row in query design:
CommentText: (SELECT TOP 1 CommentText FROM tblComment
WHERE tblComment.StudyID = tblStudy.StudyID
ORDER BY tblComment.CommentDate DESC, tblComment.CommentID)
If subqueries are new, see:
Subquery Basics
at:
http://allenbrowne.com/subquery-01.html

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
>I have developed a filtering read-only continuous search form that allows
>me
[quoted text clipped - 19 lines]
> Any advice would be appreciated.
> Bill
BillA - 03 Apr 2007 03:50 GMT
Allen: Thank you for your suggestions. I will give them a try.
Again, thanks for your time.
Bill
> The simplest solution might be to leave the Comments table out of your
> query, so you only get the record once, not once for every comment. Make
[quoted text clipped - 35 lines]
> > Any advice would be appreciated.
> > Bill