Hi All,
I'm not quite sure what to call the following type of data manipulation so I don't quite know how to phrase my question.
Below is an example of my source data
A:A contains part IDs (which may/will repeat). B:B contains a date and time (will always be a 15 minute chunk e.g. 06:30,06:45,07:00) associated with a sale period for the ID in A (so 6:30 may appear a few times for different IDs - but IDs will *never* appear more than once for the same time period) this column has been sorted so the earliest date/time will always be first. C:C contains data associated with the ID and Time in A and B
Below is how I wish the data to be presented - A has been transposed and filtered (unique IDs - no repeats) B is a list of date times starting at 12/12/2021 06:30 (the first time and increasing by 15 minute intervals. I have already sorted this part out which works perfectly as I want it. What I don't know how to do is get those associated bits of Data in C:C to appear in the relevant cells.
I should specify I'm using VBA rather than formula for this as the data set is quite large (though not in the example of course), so I'm after a VBA solution
Thanks for any help!
I'm not quite sure what to call the following type of data manipulation so I don't quite know how to phrase my question.
Below is an example of my source data
1234 | 12/12/2021 06:30 | chicken |
4444 | 12/12/2021 06:30 | lamp |
321 | 12/12/2021 06:30 | oak |
1234 | 12/12/2021 07:30 | blimp attack |
1234 | 13/12/2021 08:30 | extended warranty |
…. | …. | …. |
A:A contains part IDs (which may/will repeat). B:B contains a date and time (will always be a 15 minute chunk e.g. 06:30,06:45,07:00) associated with a sale period for the ID in A (so 6:30 may appear a few times for different IDs - but IDs will *never* appear more than once for the same time period) this column has been sorted so the earliest date/time will always be first. C:C contains data associated with the ID and Time in A and B
Below is how I wish the data to be presented - A has been transposed and filtered (unique IDs - no repeats) B is a list of date times starting at 12/12/2021 06:30 (the first time and increasing by 15 minute intervals. I have already sorted this part out which works perfectly as I want it. What I don't know how to do is get those associated bits of Data in C:C to appear in the relevant cells.
1234 | 4444 | 321 | |
12/12/2021 06:30 | chicken | lamp | oak |
12/12/2021 06:45 | |||
12/12/2021 07:00 | |||
12/12/2021 07:15 | |||
12/12/2021 07:30 | blimp attack | ||
…. | |||
13/12/2021 08:30 | extended warranty | ||
I should specify I'm using VBA rather than formula for this as the data set is quite large (though not in the example of course), so I'm after a VBA solution
Thanks for any help!