Hi, I am building a time blocking app, and record both when a task is due to start and when it is actually started.
How do I return the average time that a user starts their tasks early or late?
I am thinking something like:
add up all the due to start times and
subtract them from the actual start times,
divided by the number of tasks started
However, I can’t seem to get it to do that… There must be a better way!