Hello!
I have a set of data with the dates and times in a column. However I need the dates to remain vertical and the times to be horizontal.
Example:
The desired output would be:
While I could transpose all manually, I have over 35000 rows of data.
Some days, a person might have 2 punches, on another 8. This is why a simply transpose doesn't work, nor a pivot table.
HELP PLEASE. TIA.
I have a set of data with the dates and times in a column. However I need the dates to remain vertical and the times to be horizontal.
Example:
NAME | ID | DATE | TIME |
ABC | 123456 | 5/8/2020 | 6:00A |
ABC | 123456 | 5/8/2020 | 11:00A |
ABC | 123456 | 5/8/2020 | 12:00P |
ABC | 123456 | 5/8/2020 | 4:00P |
ABC | 123456 | 5/9/2020 | 5:58A |
ABC | 123456 | 5/9/2020 | 4:00P |
BCD | 234567 | 5/8/2020 | 10:00A |
BCD | 234567 | 5/8/2020 | 2:00P |
BCD | 234567 | 5/8/2020 | 3:00P |
BCD | 234567 | 5/8/2020 | 8:00P |
The desired output would be:
NAME | ID | DATE | TIME1 | TIME2 | TIME3 | TIME4 | TIME5 |
ABC | 123456 | 5/8/2020 | 6:00A | 11:00A | 12:00P | 4:00P | |
ABC | 123456 | 5/9/2020 | 5:58A | 4:00P | |||
BCD | 234567 | 5/8/2020 | 10:00A | 2:00P | 3:00P | 8:00P |
While I could transpose all manually, I have over 35000 rows of data.
Some days, a person might have 2 punches, on another 8. This is why a simply transpose doesn't work, nor a pivot table.
HELP PLEASE. TIA.