View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Caramon6561 Caramon6561 is offline
external usenet poster
 
Posts: 5
Default Trying to get hours for 11pm-7am shift

The cells are in time format useing 24 time.

"Joel" wrote:

You need to format the cell to be in number format, not in a date format. It
is probably giving you a year in 1900. Also your answer will be in days. To
convert it to hours multiply by 24. Minutes multiple by 24 * 60 = 1440.

"Caramon6561" wrote:

IT may also help I'm useing Office XP the MOD formula give me times at the end

"David Biddulph" wrote:

Your formula isn't valid syntax. If you've got a formula in your
spreadsheet it's safest to copy it from the formula bar to the newsgroup,
rather than retyping it with errors.

Did you mean =SUM((A6-A5)*24,(A4-A3)*24) ?

If your problem is with going beyond midnight, it's worth using the
MOD(...,1) construct.

Try =24*(MOD(A6-A5,1)+MOD(A4-A3,1))
--
David Biddulph

"Caramon6561" wrote in message
...
I have a third shift and using excel to calculate time 10:30 to 7am all the
other shifts calculate fine useing =sum((A6-A5)*24(A4-A3)*24), But useing
this formula the third shift comes out in negative numbers any
suggestions.