Hello, I have a database that logs patient visits to our lab. Some tests involve returning the very next day for another test. I want to make a query that shows a sorted list of patients based on study date, except when the patient returns the very next day I want the second visit to be shown directly underneath the first visit. This should only apply to subsequent day visits as the same patient may have been here months or years ago also. To simplify things, here are just some fields in my table which may help: ID (autonumber), PtID, LName, FName, StudyDate, StudyType
PtID is unique to each patient.
StudyType differentiates the 2 different tests (ie. day1 and day2).
I hope this makes sense. Any suggestions?
PtID is unique to each patient.
StudyType differentiates the 2 different tests (ie. day1 and day2).
I hope this makes sense. Any suggestions?