I have a file with multiple values that I need to combine on one line. For instance, I have a unique ID on multiple rows that need to be combined into one row.
| Current format | |
| ID | Serial Number | Install Date |
| 123 | AB112 | 1/2/2019 |
| 123 | AB111 | 6/5/2018 |
| Desired Format | | | |
| ID | Serial Number 1 | Install Date #1 | Serial Number 2 | Install Date #2 |
| 123 | AB112 | 1/2/2019 | AB111 | 6/5/2018 |
*Note: The original file contains more than 20 columns but I only need information from a few of the columns.
Any help would be much appreciated!