I have a table with the following
Autonumber Time Temp
1 01:00:10 500
2 02:01:10 600
3 02:00:15 650
.
.
.
.
11,759 23:59:00 700
11,760 23:59:10 600
11,761 23:59:50 650
11,762 00:00:10 750
11.763 00:05:50 800
.
.
.
.
.
23,759 23:59:10 700
23,760 23:59:15 700
23,761 23:59:55 760
23,762 00:00:15 900
23,763 00:06:50 800
.
.
.
.
Etcetera....
My issue is I need to graph the time on the X coordinate and the temperature on the Y coordinate (easy) but the clock resets every 24 hours and the logs run for days.
The time is not equal, the records are not equal, I need the x coordinates to be scaled and the times vary so I cannot graph by the log number, and I have no control over the software writing it.
I have created a running sum using Dsum, but it takes too long (it is for a multiuser application that will be used many times on many different changing data sets)
I'm out of ideas, any help would be appreciated.
Thank you.
Autonumber Time Temp
1 01:00:10 500
2 02:01:10 600
3 02:00:15 650
.
.
.
.
11,759 23:59:00 700
11,760 23:59:10 600
11,761 23:59:50 650
11,762 00:00:10 750
11.763 00:05:50 800
.
.
.
.
.
23,759 23:59:10 700
23,760 23:59:15 700
23,761 23:59:55 760
23,762 00:00:15 900
23,763 00:06:50 800
.
.
.
.
Etcetera....
My issue is I need to graph the time on the X coordinate and the temperature on the Y coordinate (easy) but the clock resets every 24 hours and the logs run for days.
The time is not equal, the records are not equal, I need the x coordinates to be scaled and the times vary so I cannot graph by the log number, and I have no control over the software writing it.
I have created a running sum using Dsum, but it takes too long (it is for a multiuser application that will be used many times on many different changing data sets)
I'm out of ideas, any help would be appreciated.
Thank you.
Comment