I have a problem when trying to add up time.
I have 4 columns, C, D, E, F.
For example,
I'm trying to calculate these to display how many hours a worker worked.
In this case, it will be 8 hours. But when trying to calculate this, it doesn't seem to work.
This is what I'm using to calculate. By the way, i'm calculating this from another worksheet.
Specifying the actual column and row works, but since there will be more time in the columns, i will be adding/subtracting by column.
thanks for taking a look.
I have 4 columns, C, D, E, F.
For example,
HTML:
C(IN) D(OUT) E(IN) F(OUT)
7:30 AM 11:30 AM 12:30 PM 4:30 PM
I'm trying to calculate these to display how many hours a worker worked.
In this case, it will be 8 hours. But when trying to calculate this, it doesn't seem to work.
This is what I'm using to calculate. By the way, i'm calculating this from another worksheet.
Code:
=SUM(table!D:D,-table!C:C)+SUM(table!F:F,-table!E:E)
Specifying the actual column and row works, but since there will be more time in the columns, i will be adding/subtracting by column.
thanks for taking a look.