U
ucdcrush
I have a table that looks like this:
-------------
Patient ID - Site ID - Error 1 - Error 2 - Error 3 - Error 4 (etc.
through Error 70)
1211 1 133 145 118
1211 1 133 115
-------------
etc. for 94 rows.
What I'd like to do is make that into this:
-------------
Patient ID - Site ID - Error 1 - Error 2 - Error 3 - Error 4 (etc.
through Error 70)
1211 1 133 145 118 115
-------------
i.e., condense the data for that patient by moving the 115 from the 2nd
record up into the next available field in the other row. The 133
needn't be moved up since it's already there.
How can this be accomplished? Any input is greatly appreciated.
-------------
Patient ID - Site ID - Error 1 - Error 2 - Error 3 - Error 4 (etc.
through Error 70)
1211 1 133 145 118
1211 1 133 115
-------------
etc. for 94 rows.
What I'd like to do is make that into this:
-------------
Patient ID - Site ID - Error 1 - Error 2 - Error 3 - Error 4 (etc.
through Error 70)
1211 1 133 145 118 115
-------------
i.e., condense the data for that patient by moving the 115 from the 2nd
record up into the next available field in the other row. The 133
needn't be moved up since it's already there.
How can this be accomplished? Any input is greatly appreciated.