How do I allow for multiple values in VLOOKUP?

G

Guest

I have a list of people that are working particular shifts which are set up
in four to five hour increments. Some people are working consecutive shifts
(working eight/nine hours in a day). I am trying to show each person's
schedule with beginning and end times using VLOOKUP. It is working just fine
if the people only work one shift per day. The multiple shift people only
have their first shifts display. I would like to LOOKUP based upon the
person's name giving the first shift's start time and the second shift's end
time and haven't found a good combination of functions to use. Any
suggestions?
 
B

Biff

Hi!

Do the shifts span past midnight like 10:00 PM - 6:00 AM ?

If not then you could use something like this:

For the earliest start time:

=MIN(IF(A1:A10="some_name",B1:B10))

For the latest end time:

=MAX(IF(A1:A10="some_name",B1:B10))

You can replace "some_name" with a cell reference.

These are array formulas and must be entered using the key combination of
CTRL,SHIFT,ENTER.

Biff
 
G

Guest

Biff -
That worked marvelously.
Thanks

Biff said:
Hi!

Do the shifts span past midnight like 10:00 PM - 6:00 AM ?

If not then you could use something like this:

For the earliest start time:

=MIN(IF(A1:A10="some_name",B1:B10))

For the latest end time:

=MAX(IF(A1:A10="some_name",B1:B10))

You can replace "some_name" with a cell reference.

These are array formulas and must be entered using the key combination of
CTRL,SHIFT,ENTER.

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top