Given the following table and data:
TimeStamp HistoryPointID Value
8/1/2013 1:00:00 PM 1 19.15
8/1/2013 1:00:00 PM 2 117.1104
8/1/2013 1:00:00 PM 3 207.111
8/1/2013 1:00:00 PM 4 85.3264
8/1/2013 12:00:00 PM 1 20.1667
8/1/2013 12:00:00 PM 2 140.071
8/1/2013 12:00:00 PM 3 205.1211
8/1/2013 12:00:00 PM 4 85.3285
I would like to do a select where I would get;
TimeStamp, Value 1, Value 2, Value 3, Value 4
TimeStamp, Value 1, Value 2, Value 3, Value 4
or in other words using the actual data:
TimeStamp Value1 Value2 value3 value4
8/1/2013 1:00:00 PM 19.15 117.1104 207.111 85.3264
8/1/2013 12:00:00 PM 20.1667 140.071 205.1211 85.3285
I have tried group by TimeStamp and I just cant get it. Is there a way in Access to do this? In Microsoft SQL I could do it in the joins, but Access seems to have kittens if I try that.
Thanks in advance,
Bob