Good day!
I have a table that looks like
[TABLE="width: 500"]
<TBODY>[TR]
[TD]Day
[/TD]
[TD]IN
[/TD]
[TD]OUT
[/TD]
[TD]IN
[/TD]
[TD]OUT
[/TD]
[TD]Hours
[/TD]
[/TR]
[TR]
[TD]1-Jul
[/TD]
[TD]8:00
[/TD]
[TD]12:00
[/TD]
[TD]13:00
[/TD]
[TD]17:00
[/TD]
[TD]8 hours, 0 minutes
[/TD]
[/TR]
[TR]
[TD]2-Jul
[/TD]
[TD]8:00
[/TD]
[TD]12:00
[/TD]
[TD]13:00
[/TD]
[TD]17:30
[/TD]
[TD]8 hours, 30 minutes
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]Total Hours
[/TD]
[TD][/TD]
[/TR]
</TBODY>[/TABLE]
Hours column is formatted as such, h "hours," m "minutes" and is a calculated column;
I need to calculate the Total Hours. In this example, it should say 16 hours, 30 minutes. I tried using a SUM, but it only seems to show the maximum for some reason. Can anyone help me?
I have a table that looks like
[TABLE="width: 500"]
<TBODY>[TR]
[TD]Day
[/TD]
[TD]IN
[/TD]
[TD]OUT
[/TD]
[TD]IN
[/TD]
[TD]OUT
[/TD]
[TD]Hours
[/TD]
[/TR]
[TR]
[TD]1-Jul
[/TD]
[TD]8:00
[/TD]
[TD]12:00
[/TD]
[TD]13:00
[/TD]
[TD]17:00
[/TD]
[TD]8 hours, 0 minutes
[/TD]
[/TR]
[TR]
[TD]2-Jul
[/TD]
[TD]8:00
[/TD]
[TD]12:00
[/TD]
[TD]13:00
[/TD]
[TD]17:30
[/TD]
[TD]8 hours, 30 minutes
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]Total Hours
[/TD]
[TD][/TD]
[/TR]
</TBODY>[/TABLE]
Hours column is formatted as such, h "hours," m "minutes" and is a calculated column;
Code:
=(e10-d10)+(g10-f10)
I need to calculate the Total Hours. In this example, it should say 16 hours, 30 minutes. I tried using a SUM, but it only seems to show the maximum for some reason. Can anyone help me?
Last edited: