Help - Time band seperator

shumonsaha

Board Regular
Joined
Mar 22, 2009
Messages
56
I have data in columns

Col A has program names A, B,C etc
Col B has time against each program

I want to insert col c so that

Programs between 02:00 to 05:59 is labelled late night, 06:00 to 09:59 is labelled morning, 10:00 to 13:59 is labelled Early Afternoon, 14:00 to 17:59 is labelled Afternoon, 18:00 - 21:59 is labelled Prime Time, 22:00 to 25:59 is labelled Late Prime

Can anyone give me a formula for this?
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
See how this does...

=IF(L2 < TIMEVALUE("05:59"),"Late Night",IF(L2 < TIMEVALUE("09:59"),"Morning",IF(L2 < TIMEVALUE("13:59"),"Early Afternoon",IF(L2 < TIMEVALUE("17:59"),"Afternoon",IF(L2 < TIMEVALUE("21:59"),"Prime Time",IF(L2 < TIMEVALUE("23:59"),"Late Prime",""))))))
 
Upvote 0
This works. But I get blank for the time between 23:59 and 25:59

All the other time bands are labelled correctly
 
Upvote 0
How about at the end of the formula replace the "" with what you want for that time. BTW...what is 25:59?
 
Upvote 0
That's what I thought, but I would say we could not use 25:59 because in Excel it is not a time.
 
Upvote 0
Try...

=IF(L2 < TIMEVALUE("05:59"),"Late Night",IF(L2 < TIMEVALUE("09:59"),"Morning",IF(L2 < TIMEVALUE("13:59"),"Early Afternoon",IF(L2 < TIMEVALUE("17:59"),"Afternoon",IF(L2 < TIMEVALUE("21:59"),"Prime Time",IF(L2 < TIMEVALUE("25:59"),"Late Prime",""))))))
 
Upvote 0

Forum statistics

Threads
1,214,529
Messages
6,120,070
Members
448,943
Latest member
sharmarick

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