Problem:
We want to use the sign-in times from column A to determine whether a person was starting a morning, an afternoon, or a night shift.
For times before 12:00, the formula should return \"Morning Shift\".
For times between 12:00 and 16:00 the formula should return \"Afternoon Shift\".
For times after 16:00, the formula should return \"Night Shift\".
Solution:
Use the IF and TIME functions as shown in the following formula:
=IF(A2
Where's the rest of the tip? I've been looking for this one tip for days and now that I finally find it, it's incomplete. Can the rest be posted up? Or what do I need to do to see the rest?
Thanks
You may have to buy the book to find the answer, it's on page 151, see link
http://www.exceltip.com/pl-f1ff_contents
or you could place your question in this forum?
oldchippy
-------------
![]()
![]()
If you are happy with the help you have received, please click the blue scales icon in the blue bar of the post.
Click here >>> Top Excel links for beginners to Experts
Forum Rules >>>Please don't forget to read these
Don't know what the tip actually says but this is a fairly basic IF formula
=IF(A2>=2/3,"Night",IF(A2>=0.5,"Afternoon","Morning"))&" Shift"
..or with LOOKUP
=LOOKUP(HOUR(A2),{0,12,16},{"Morning","Afternoon","Night"})&" Shift"
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks