Counting Hours in a Schedule

mike4777

Board Regular
Joined
Apr 12, 2011
Messages
122
I was wondering if someone could help me develop a formula to count the hours when formatted in such a way:

NameHoursMondayTuesdayWednesdayThursday
Name 1=Formula8am-8pm10:30pm-6:15ametcetc
Name 2
Name 3
etc

<tbody>
</tbody>

I can do it with a million LEft( and Right( but that seems terribly clunky and prone to possible error.
 
Last edited:
If that formula is meant for the cells when formatted as "12:00 am" then no it does not work. I am returning a number but it is not the number of hours. Also, your format "[H]:mm" I changed to h.m

I do not want 8:30 (to represent 8.5 hours). I want it to say 8.5.
 
Upvote 0

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
No, doesn't need converted to a fraction. It's represented as a time value, which is a fraction of a whole number. In Excel, on day is represented as a whole number. So half a day (12 hours) is represented as 0.5. If expressed as "[h]:mm" format it would be "12:00", or 12 hours, which is the equivalent of half a day. If it was 6 hours, the decimal equivalent would be 0.25, or 6:00 hours, which is the same value.

If you want to convert a time value to a numerical decimal value, you'll need to multiply the entire value by 24, since there are 24 hours in a day. So taking a time value of 8 hours, which is expressed as "8:00", and as a decimal is 0.3333333, would be to wrap the entire formula in (YOUR_PROVIDED_FORMULA)*24. You would need to ensure you formatted that cell/column in a number format, not a time format.
 
Upvote 0
The mod will help to shorten the formula.
See file attached
http://1drv.ms/1qDWcB7


<colgroup><col width="64" style="width: 48pt;"> <col width="96" style="width: 72pt; mso-width-source: userset; mso-width-alt: 3510;"> <col width="64" style="width: 48pt;"> <col width="69" style="width: 52pt; mso-width-source: userset; mso-width-alt: 2523;"> <col width="19" style="width: 14pt; mso-width-source: userset; mso-width-alt: 694;"> <col width="64" style="width: 48pt;"> <col width="69" style="width: 52pt; mso-width-source: userset; mso-width-alt: 2523;"> <col width="13" style="width: 10pt; mso-width-source: userset; mso-width-alt: 475;"> <tbody> </tbody>
 
Upvote 0
No, that's not true vogel997. The IF structure is so long because it checks to ensure two values are entered for each day. Remove them and the formulas are about the same length. But I would keep the IF statements in, because they give a check the other formulas do not.
 
Upvote 0
Everything seems to be working great now except one thing.

When I set a time value for say, 9:00 PM - 12:00 AM it does not count it as 3 hours because 12:00 AM is treated as a lesser value than 9:00 PM.

IF(COUNTA(D4,F4)=2,(F4<=D4)+F4-D4,0)

I need it to take in to account that if the second time slot passes 11:59 PM, it knows that it is the next day.
 
Upvote 0
Everything seems to be working great now except one thing.

When I set a time value for say, 9:00 PM - 12:00 AM it does not count it as 3 hours because 12:00 AM is treated as a lesser value than 9:00 PM.

IF(COUNTA(D4,F4)=2,(F4<=D4)+F4-D4,0)

I need it to take in to account that if the second time slot passes 11:59 PM, it knows that it is the next day.


never mind, I was mistaken. Thank you guys for helping with this. I was a complete newb when it comes to dealing with dates.
 
Upvote 0

Forum statistics

Threads
1,215,883
Messages
6,127,544
Members
449,385
Latest member
KMGLarson

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top