Hello
I have a table with ClientIDs and their diagnosis codes. ClientID has multiple records and each record has a different dx code.
ClientID DxCode
1111 F12.467
1111 F3.90
2222 F21.9
2222 F9.00
2222 F12.270
My goal is to have a table/datasheet that has ClientID appear once and string out the dx codes.
ClientID DIAG1 DIAG2 DIAG3 DIAG4 DIAG5
1111 F12.467 F12.467
2222 F21.9 F9.00 F12.270
I don't write much code and do mostly everything through querying but any help is much appreciated.
I have a table with ClientIDs and their diagnosis codes. ClientID has multiple records and each record has a different dx code.
ClientID DxCode
1111 F12.467
1111 F3.90
2222 F21.9
2222 F9.00
2222 F12.270
My goal is to have a table/datasheet that has ClientID appear once and string out the dx codes.
ClientID DIAG1 DIAG2 DIAG3 DIAG4 DIAG5
1111 F12.467 F12.467
2222 F21.9 F9.00 F12.270
I don't write much code and do mostly everything through querying but any help is much appreciated.