I seldom set properties like that in table. I do it on form.
I have attempted to recreate the example graphs. I filtered the data to show only records for 10am.
I do wonder why example Graph2 shows only 2 data points for each elapsed time.
Turns out a unique record ID was not needed, although I did modify table to add field.
I did not attempt to display the elapsed time as 00:00:00. Review
https://access-programmers.co.uk/for...ecimal+degrees
Here is alternative query for Graph2 RowSource:
SELECT DateDiff("s",(SELECT Min(Time_Stamp) FROM TREND002),[Time_Stamp]) AS ElapsedTime, Act_val FROM TREND002 WHERE DatePart("h",[Time_Stamp])=10;