I am relatively new to vba and finding it difficult to write a code for this dynamic range. Input data has date from 11/07/14 to 11/14/14 Hours from 00:00 to 23:00 Hrs. I need to transpose the Hours in such a way that for each date i have value for each hour (in columns). Please let me know if i was not clear with the question. Thanks a million in advance
Input data
Date Hours Name %Value
11/07/14 00:00 P4127C11 20
11/07/14 01:00 P4127C11 30
.
.
11/07/14 23:00 P4127C11 24
11/08/14 00:00 P4127C11 15
.
.
11/11/14 00:00 P4127C11 25
. . . .
. . . .
11/11/14 23:00 P4127C11 31
Output Data
Date Name 00:00 01:00 02:00 . . . . 23:00
11/07/14 P4127C11 20 30 . . .. . 24
11/08/14 P4127C11 15 . . .. . . . .
.
.
11/11/14 P4127C11 25 . . . 31