Categorizing Hours (in military time) from Range -- Please Help!

lawrencecis

New Member
Joined
Oct 21, 2013
Messages
5
Hi everyone,

I'm having an interesting but difficult issue. I've searched Google and this forum, but still can't figure it out.

I am taking ranges of time and then need to break them down into two categories -- day time hours and night time hours -- and need to repeat this process daily. I am inputting a range, like 6:16:10 - 23:57:04. The problem I am facing is that even though I do an "if" function,<j37),"1", 2))="" the="" function="" is="" activated="" for="" number="" of="" beginning="" range="" (i.e.="" 6:16:10),="" but="" not="" all="" numbers="" inside="" range.="" example,="" i="" would="" like="" excel="" to="" recognize="" time="" from="" 23:00:00-23:57:04="" or="" difference="" (00:57:04)="" should="" be="" designated="" at="" "night="" hours"="" in="" order="" multiplied="" by="" $1.=""
the "if" function is only taking into account the first number in the range (i.e. 6:16:10). I would like the new function to be able to categorize/recognize all the time during a specific range as "night" or "day" time, like 23:00:00 - 23:57:04 would be marked as "night" and then I would be able to multiple it by $1. </j37),"1",>
<j37),"1", 2))="" the="" function="" is="" activated="" for="" number="" of="" beginning="" range="" (i.e.="" 6:16:10),="" but="" not="" all="" numbers="" inside="" range.="" example,="" i="" would="" like="" excel="" to="" recognize="" time="" from="" 23:00:00-23:57:04="" or="" difference="" (00:57:04)="" should="" be="" designated="" at="" "night="" hours"="" in="" order="" multiplied="" by="" $1.=""

If anyone could help I would appreciate it. </j37),"1",>
 
Last edited:

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Hi,

Try this:

Excel 2010
NO
17TimeCategory
186:00Day Hours
195:00Day Hours
208:00Day Hours
2124:00:00Night Hours
2223:00Night Hours

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Time

Worksheet Formulas
CellFormula
O18=IF(AND(N18>=0.208333333333333,N18<0.958333333333333),"Day Hours","Night Hours")

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
Thanks bschwartz for the response. I really appreciate it.

I was able to do your function but it's not exactly what I was looking for. I would like to have a range of time be designated as "night" or "day." For example, if I have a starting time of 21:50:00 and an end time of 23:10:00, I would like the function to differentiate the entire amount of time and minutes in between those times (not just the beginning and ending numbers) to be designated as "night" or "day". For example, with example I just provided, I would like all the time between 21:55:00 and 22:59:59 marked as "day" and all the time between 23:00:00 and 23:10:00 marked as "night." With the function you provided only the first number in the range would be "night" or "day."
 
Upvote 0
What are the night hours? Assuming 23:00 to 07:00 try this:

A2 = start time
B2 = end time

Use this formula in C2 to get the day hours as a decimal

<a2)*(23-7)+median(b2*24,7,23)-median(a2*24,7,23)
=(B2< A2)*(23-7)+MEDIAN(B2*24,7,23)-MEDIAN(A2*24,7,23)

and then in D2 for the rest of the hours (night hours)

=MOD(B2-A2,1)*24-C2

format C2 and D2 as number</a2)*(23-7)+median(b2*24,7,23)-median(a2*24,7,23)
 
Upvote 0
Barry, he had originally posted that it was 23:00 to 5:00, but he edited the post numerous times, so it's hard to follow the thread. Slightly annoying...
 
Upvote 0
Thank you Barry Houdini! It worked. WOW.

One last thing, if I put whole numbers like 10:00:00 and 12:00:00 for the A2 and B2 cells it works smoothly. However, when I put in a fraction of time like 3:12:34 and 12:22:13 for the A2 and B2 cells, I get the #VALUE! sign. Is there a way I can format it to avoid this?
 
Upvote 0
Again, I apologize for posting twice.

@Houdini: I changed the format of the function you provided so that it matches the "night" hours I need -- no problem there.
 
Upvote 0
One last thing, if I put whole numbers like 10:00:00 and 12:00:00 for the A2 and B2 cells it works smoothly. However, when I put in a fraction of time like 3:12:34 and 12:22:13 for the A2 and B2 cells, I get the #VALUE! sign. Is there a way I can format it to avoid this?

Did you resolve this? I can't replicate the problem - you should be able to put any time values in A2 and B2
 
Upvote 0
Did you resolve this? I can't replicate the problem - you should be able to put any time values in A2 and B2

Hi barry,

Unfortunately the problem still remains. I'm not sure the reason. I've been playing around with the formatting, but to no avail.

Thank you very much for your help.
 
Upvote 0

Forum statistics

Threads
1,215,398
Messages
6,124,690
Members
449,179
Latest member
kfhw720

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