Time Formulars

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can someone please tell me , is there a formular , for calculated hours worked
eg: i use one column for start times , one for finished times , and I would like the third column to caculate the hours inbetween , Start 9:00:00am - Finish 2:30:00pm - Hours Worked 5.5 - Any help would be gratefully recieved.
 
Dawn,

Use something like

=(End_Time - Start_Time)*24

If it is possible that the duration will cross midnight (e.g., start at
10PM,end at 2AM), use a formula like

=(End_Time - Start_Time + (Start_Time<End_Time))*24


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com

Dawn said:
Can someone please tell me , is there a formular , for calculated hours worked?
eg: i use one column for start times , one for finished times , and I
would like the third column to caculate the hours inbetween , Start
9:00:00am - Finish 2:30:00pm - Hours Worked 5.5 - Any help would be
gratefully recieved.
 
Hi
one way (if A1 stores the start time and B1 the end time9:
=(B1-A1)*24

or if your working time can span midnight:
=(B1-A1+(B1<A1))*24
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top