so, first, I'm assuming your J calc should really read
=IF(I16>=E16,...)
else it doesn't really make sense - i.e. your first result might be format as Time and thus show 2:30 but, in reality, it's actually storing 26:30 (1 day + 2:30) -- thereby distorting your Average.
personally, I would change / simplify your approach in J to below:
Formula:
J16: =MOD(I16-E16,1)-SUM(F16,H16)
format as time
copied down
to average, simply use =AVERAGE(Jx:Jy) where x & y represent your first / law row of times, again, format as time
Bookmarks