surfbum3000
Technical User
I need to merge two fields only when there is a duplicate. I created a query to separate the duplicates from a table (although that step may not be necessary. The table contains appt. information for an outpatient clinic. Some patients have multiple appts. A sample of the data is as follows:
NAME LOCATION DATE TIME STAFF_NAME
Doe, John NWMH 06/06/2008 13:00 Freud
Doe, John NWMH 06/06/2008 14:00 Ratchet
In need the data to be in this format:
Doe, John NWMH 06/06/2008 13:00,14:00 Freud,Ratchet
I have no idea where to start.
NAME LOCATION DATE TIME STAFF_NAME
Doe, John NWMH 06/06/2008 13:00 Freud
Doe, John NWMH 06/06/2008 14:00 Ratchet
In need the data to be in this format:
Doe, John NWMH 06/06/2008 13:00,14:00 Freud,Ratchet
I have no idea where to start.