I have an Excel file containing data from multiple machines. Each second a machine writes it's 14 sensor values in columns with a time stamp. The time stamps are redundant/the same for all machines. The data looks like this:
Time machine rpm01 rpm02 .... rpm14
00:01 M1 100 396 321
00:02 M1 200 323 213
........
00:01 M2 123 163 242
00:02 M2 243 128 221
........
00:01 M60 134 222 231
00:02 M60 245 113 241
How can I move each "block of data" to the right into new columns? It should look like this:
M1 | M2 | M60 |
Time rpm01 rpm02 .... rpm14 | rpm01 rpm02 .... rpm14 | rpm01 rpm02 .... rpm14 |
00:01 100 396 321 | 123 163 242 | 134 222 231 |
00:02 200 323 213 | 243 128 221 | 245 113 241 |
........ | ........ | ........ |
Thanks!