I am having some difficulty in populating a data into a composite line chart
I have the following data weekday(sunday,monday,tuesday...saturday)*hours(0,1,2,3...23)*minutes(0/30)
day hour minutes unique_counts
sunday 0 0 922
sunday 0 30 1011
sunday 1 0 1239
...
sunday 23 0 737
sunday 23 30 985
monday 0 0 1406
...
monday 23 0 545
monday 23 30 666
...
tuesday 0 0 829
...
tuesday 14 0 3059
...
tuesday 23 30 834
...
wednesday 23 30 874
...
thursday 23 30 839
...
friday 23 30 637
...
saturday 23 30 683
Is it possible to populate this structure to a chart ? As I am doing a lotta manual process such as rearranging the individual weekdays and its respective values into separate columns to create a chart. I have 10 similar sheets to repeat the process. Is there any way to automate the sheets or any generic procedure for this data to generate graph plot ?
X-Axis - hour&minutes (00:00, 00:30, 01:00,...23:00, 23:30)
Y-Axis - unique_counts (x,y,z ....)
individual data line for sunday/monday/tuesday/wednesday/thursday/friday/saturday
P.S: if it is a easy process, please excuse me. I am not much proficient in excel. I spoke with a person who knows more excel than me and his suggestion was to record macro when re-arranging the data into individual columns and apply it for several sheets. As, I need more suggestions I am posting this question here.
Thanks!
Edit[13/08/2014]: I just got a chance to look into pivot table. Created a new time column concatenating the hour/minute fields. But still, have to do some manual process for each sheets to generate the pivot data and chart.