I would like to combine like rows based on StudentID and Subject in the table below.
StudentID | Subject | Code |
---|---|---|
393438 | Math | [AF15] |
393438 | Math | [DS1.4] |
I would like for the code column to join the unique values into one field. Example: The above table would become:
StudentID | Subject | Code |
---|---|---|
393438 | Math | [AF15];[DS1.4] |
I have tried to merge the table with another table with unique records for studentid and subject. I am fairly new at MS Access and still learning. Any help would be greatly appreciated.