Hi,
I would like to find out how many echo's one person had and show only one name and in a colum and show all the dates in the next colum.
Thsi is what I have so far:
SELECT Demographics.Last_Name, Demographics.First_Name, Demographics.Patient_ID AS ["MRN"], Event_Echo.EventDate, Event_Echo.ProcedureType, Event_Echo.PtDataInterpretingMD
FROM Demographics INNER JOIN Event_Echo ON Demographics.SS_Patient_ID = Event_Echo.SS_Patient_ID
GROUP BY Demographics.Last_Name, Demographics.First_Name, Demographics.Patient_ID, Event_Echo.EventDate, Event_Echo.ProcedureType, Event_Echo.PtDataInterpretingMD
HAVING (((Event_Echo.EventDate) Between #12/1/2006# And #12/1/2006#))
ORDER BY Demographics.Last_Name, Event_Echo.EventDate;
Is there a way to do this in Access?
Thank you!
I would like to find out how many echo's one person had and show only one name and in a colum and show all the dates in the next colum.
Thsi is what I have so far:
SELECT Demographics.Last_Name, Demographics.First_Name, Demographics.Patient_ID AS ["MRN"], Event_Echo.EventDate, Event_Echo.ProcedureType, Event_Echo.PtDataInterpretingMD
FROM Demographics INNER JOIN Event_Echo ON Demographics.SS_Patient_ID = Event_Echo.SS_Patient_ID
GROUP BY Demographics.Last_Name, Demographics.First_Name, Demographics.Patient_ID, Event_Echo.EventDate, Event_Echo.ProcedureType, Event_Echo.PtDataInterpretingMD
HAVING (((Event_Echo.EventDate) Between #12/1/2006# And #12/1/2006#))
ORDER BY Demographics.Last_Name, Event_Echo.EventDate;
Is there a way to do this in Access?
Thank you!