I have a data set that look like this
And i want to split it like this
Any excel formula idea or vba macro code idea? Thank you!
Name | Activity | Detail | Start | Finish |
Bob | Cooking | Cooking pasta | 22/04/2020 9:00 | 22/04/2020 10:00 |
Bill | Reading | Reading novel | 22/04/2020 9:30 | 22/04/2020 10:00 |
And i want to split it like this
Name | Time | Activity | Detail |
Bob | 22/04/2020 9:00 | Cooking | Cooking pasta |
Bob | 22/04/2020 9:30 | Cooking | Cooking pasta |
Bill | 22/04/2020 9:30 | Reading | Reading Novel |
Any excel formula idea or vba macro code idea? Thank you!