sum of timesheet

  • Thread starter Thread starter nidabland
  • Start date Start date
N

nidabland

Let's say A1: 9 am
A2: 12 pm
A3: 12:30 pm
A4: 3 pm
I need the total in A5 to calculate how many hours worked, but also if I
write "off" in A1:A4, I need A5 to say "off", so basically I need either the
total hours worked or the word "off" in A5. Is this possible? Thanks for
any help,
 
Is "off" in *every* cell of a1:a4, or *any* cell?
If every, try:
=if(countif(a1:a4,"off")=4,"off",a2-a1+a4-a3)

If any, change =4 to >=1

Regards,
Fred
 
Back
Top