I searched thru knowledge base for row equations & I can't figure this out.
DateTimeIn = date <format>hh:mm</format>
DateTimeOut = date <format>hh:mm</format>
Duration = Number
RowEquation Duration (DateTimeIn, DateTimeOut)
Field names for ClockIn & ClockOut are DateTimeIn & DateTimeOut respectively
I DON'T GET IT !!!!
.png)

Comments
'------------------------------------------- Function CalcTaskDuration(TaskStart, Duration, TaskEnd) dim d if isnull(TaskStart)=true then d=null elseif isnull(TaskEnd)=true then d=null else d=TaskEnd-TaskStart end if if d<0 then d=0 CalcTaskDuration = d end Function