Formula to find 'Part of the Day' from the Time Column

Zee996

New Member
Joined
Nov 30, 2021
Messages
30
Office Version
  1. 365
Platform
  1. Windows
Hi all,

I have Time data in Column D and I am looking for an Excel formula that will label the time as Part of the Day.

The formula that I am using right now only gives the "Morning Output"

Formula that I am using - =IF(OR(D2>=TIMEVALUE("5:00 AM"),D2<TIMEVALUE("12:00 PM")),"Morning",IF(AND(D2>=TIMEVALUE("12:01 PM"),D2<TIMEVALUE("5:00 PM")),"Afternoon",IF(AND(D2>=TIMEVALUE("5:01 PM"),D2<=TIMEVALUE("11:59 PM")),"Evening"))). Can someone please help? Thank you.

Here is how the data looks:
Time
12:20 PM
01:14 PM
02:02 PM
11:55 AM
12:27 PM
11:30 AM
10:37 AM
03:23 PM
09:05 PM
02:24 PM
08:42 AM
08:41 AM
08:40 AM

Here is the Criteria:
Criteria
TimingsPart of the Day
5:00 AM - 12:00 PMMorning
12:01 PM - 5:00 PMAfternoon
5:00 PM - 11:59 PMEvening
12:00 AM - 4:59 AMEarly Morning
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Excel Formula:
=LOOKUP(
    B3:B15,
    HSTACK(
        VSTACK(TIME(0, 0, 0), TIME(5, 0, 0), TIME(12, 1, 0), TIME(17, 0, 0)),
        {"Early Morning"; "Morning"; "Afternoon"; "Evening"}
    )
)
 

Attachments

  • Screenshot 2024-01-20 113550.png
    Screenshot 2024-01-20 113550.png
    38.7 KB · Views: 10
Last edited:
Upvote 0
But you can't have a value in 2 different slots (5PM)?
 
Upvote 0
Thank you so much for the formula. It definitely works. I just checked and within the criteria there is two 5 PM. Would this formula work if I change the criteria?
TimingsPart of the Day
5:00 AM - 12:00 PMMorning
12:01 PM - 5:00 PMAfternoon
5:01 PM - 11:59 PMEvening
12:00 AM - 4:59 AMEarly Morning
 
Upvote 0
I can't really comment on the formula because they're not my thing so my capabilities there are quite limited. However, you could answer that by trying? I think I'd have the criteria like so:
05:00:00 AM - 11:59:59 AM
12:00:00 PM - 04:59:59 PM
05:00:00 PM - 11:59:59 PM
12:00:00 AM - 04:59:59 AM
 
Upvote 0
Thank you Logchief and Micron. I tried the exact formula just put (17, 1, 0) instead of (17, 0, 0) and this is giving me the correct output. Thanks a lot!

=LOOKUP(D2:D5483,HSTACK(
VSTACK(TIME(0, 0, 0), TIME(5, 0, 0), TIME(12, 1, 0), TIME(17, 1, 0)),
{"Early Morning";"Morning";"Afternoon";"Evening"}
)
)
 
Upvote 0
Thank you so much for the formula. It definitely works. I just checked and within the criteria there is two 5 PM. Would this formula work if I change the criteria?
TimingsPart of the Day
5:00 AM - 12:00 PMMorning
12:01 PM - 5:00 PMAfternoon
5:01 PM - 11:59 PMEvening
12:00 AM - 4:59 AMEarly Morning

Excel Formula:
        TIME(0, 0, 0), TIME(5, 0, 0), TIME(12, 1, 0), TIME(17, 0, 0),
        {"Early Morning"; "Morning"; "Afternoon"; "Evening"}

You cannot change the wording order, and you cannot change the first time -TIME(0,0,0).
You can change the last three times, but they must be in sequential order. The LOOKUP function requires data to be in sequential or alphabetic order in the second argument.
 
Upvote 0
Excel Formula:
        TIME(0, 0, 0), TIME(5, 0, 0), TIME(12, 1, 0), TIME(17, 0, 0),
        {"Early Morning"; "Morning"; "Afternoon"; "Evening"}

You cannot change the wording order, and you cannot change the first time -TIME(0,0,0).
You can change the last three times, but they must be in sequential order. The LOOKUP function requires data to be in sequential or alphabetic order in the second argument.
Okay, understood. Thank you so much for your help.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,952
Members
449,095
Latest member
nmaske

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