View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default Microsoft Excel Formula "IF" to create a timesheet

You can simplify your existing formula by changing
=IF((((D13-C13)+(F13-E13))*24)8,8,((D13-C13)+(F13-E13))*24) to
=MIN(8,((D13-C13)+(F13-E13))*24)

The reason that you've got 7 hours instead of 8 is that you've not given
credit for the hour at lunch, which you say is paid. In the simplest form,
you can just delete the content of D13 and E13 (or otherwise just add 1 to
the second term in the MIN expression), but you may instead wish to define
how to treat the data if the lunch break is longer than, or shorter than, 1
hour.

If you want to subtract time for any excess of the lunch break beyond 1
hour, you may want =MIN(8,((F13-C13)-MAX(E13-D13-1/24,0))*24)
--
David Biddulph

"reagolly" wrote in message
...
I used the following formula to create a timehseet. I work from 8:30 to
4:30
with an hour paid lunch from 11:30 to 12:30. This formula only gives me 7
hours. How can I change the formula to give me 8 hours?
=IF((((D13-C13)+(F13-E13))*24)8,8,((D13-C13)+(F13-E13))*24)
--
reagolly