+ Reply to Thread
Results 1 to 13 of 13

Concatenate Multiple Instances in Array

  1. #1
    Registered User
    Join Date
    06-22-2005
    Posts
    7

    Concatenate Multiple Instances in Array

    I searched the forums, but didn't see anything quite what I need.

    I am using Excel to handle hourly assignments, and I want to be able to note when more than one person has a meal. Each person has a row; each hour has a column. Like so:

    A B C D E F G
    Name 10 11 12 13 14 15
    Bob R M B
    Harry R M R
    Jenny B M

    What I want is to be able in the D column to list that BOTH Bob AND Jenny are at lunch--but I can't figure out how. The MATCH function only gets the first entry; I have seen some array formulas that combine MATCH and INDEX, but can't get my head around the ideas.

    Help!

  2. #2
    Biff
    Guest

    Re: Concatenate Multiple Instances in Array

    Hi!

    I plugged your sample data into a sheet and the range it occupied is: A1:G4

    Enter this formula in B6 as an array using the key combo of
    CTRL,SHIFT,ENTER:

    =IF(OR(COUNTIF(B$2:B$4,"M")<2,ISERROR(SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1)))),"",INDEX($A$2:$A$4,SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1))))

    Copy across to G6 then down to G8.

    If your actual data set is larger than what you posted (and I'm sure it is),
    then you need to change each instance of this portion of the formula:

    ROW($1:$3)

    If you have 10 names in column A then that would mean you have 10 rows of
    data (assuming there are no empty rows) so you would need to change
    ROW($1:$3) to ROW($1:$10).

    Then, when you copy down you need to copy to enough rows so that every
    possible instance that meets the conditon will be returned. In other words,
    how many people could be having a meal at the same time? 5? 20? That's how
    many rows down you would need to copy the formula to.

    Biff

    "sunfish62" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I searched the forums, but didn't see anything quite what I need.
    >
    > I am using Excel to handle hourly assignments, and I want to be able to
    > note when more than one person has a meal. Each person has a row; each
    > hour has a column. Like so:
    >
    > A B C D E F G
    > Name 10 11 12 13 14 15
    > Bob R M B
    > Harry R M R
    > Jenny B M
    >
    > What I want is to be able in the D column to list that BOTH Bob AND
    > Jenny are at lunch--but I can't figure out how. The MATCH function only
    > gets the first entry; I have seen some array formulas that combine MATCH
    > and INDEX, but can't get my head around the ideas.
    >
    > Help!
    >
    >
    > --
    > sunfish62
    > ------------------------------------------------------------------------
    > sunfish62's Profile:
    > http://www.excelforum.com/member.php...o&userid=24541
    > View this thread: http://www.excelforum.com/showthread...hreadid=381824
    >




  3. #3
    Biff
    Guest

    Re: Concatenate Multiple Instances in Array

    Hi!

    I plugged your sample data into a sheet and the range it occupied is: A1:G4

    Enter this formula in B6 as an array using the key combo of
    CTRL,SHIFT,ENTER:

    =IF(OR(COUNTIF(B$2:B$4,"M")<2,ISERROR(SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1)))),"",INDEX($A$2:$A$4,SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1))))

    Copy across to G6 then down to G8.

    If your actual data set is larger than what you posted (and I'm sure it is),
    then you need to change each instance of this portion of the formula:

    ROW($1:$3)

    If you have 10 names in column A then that would mean you have 10 rows of
    data (assuming there are no empty rows) so you would need to change
    ROW($1:$3) to ROW($1:$10).

    Then, when you copy down you need to copy to enough rows so that every
    possible instance that meets the conditon will be returned. In other words,
    how many people could be having a meal at the same time? 5? 20? That's how
    many rows down you would need to copy the formula to.

    Biff

    "sunfish62" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I searched the forums, but didn't see anything quite what I need.
    >
    > I am using Excel to handle hourly assignments, and I want to be able to
    > note when more than one person has a meal. Each person has a row; each
    > hour has a column. Like so:
    >
    > A B C D E F G
    > Name 10 11 12 13 14 15
    > Bob R M B
    > Harry R M R
    > Jenny B M
    >
    > What I want is to be able in the D column to list that BOTH Bob AND
    > Jenny are at lunch--but I can't figure out how. The MATCH function only
    > gets the first entry; I have seen some array formulas that combine MATCH
    > and INDEX, but can't get my head around the ideas.
    >
    > Help!
    >
    >
    > --
    > sunfish62
    > ------------------------------------------------------------------------
    > sunfish62's Profile:
    > http://www.excelforum.com/member.php...o&userid=24541
    > View this thread: http://www.excelforum.com/showthread...hreadid=381824
    >




  4. #4
    Biff
    Guest

    Re: Concatenate Multiple Instances in Array

    Hi!

    I plugged your sample data into a sheet and the range it occupied is: A1:G4

    Enter this formula in B6 as an array using the key combo of
    CTRL,SHIFT,ENTER:

    =IF(OR(COUNTIF(B$2:B$4,"M")<2,ISERROR(SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1)))),"",INDEX($A$2:$A$4,SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1))))

    Copy across to G6 then down to G8.

    If your actual data set is larger than what you posted (and I'm sure it is),
    then you need to change each instance of this portion of the formula:

    ROW($1:$3)

    If you have 10 names in column A then that would mean you have 10 rows of
    data (assuming there are no empty rows) so you would need to change
    ROW($1:$3) to ROW($1:$10).

    Then, when you copy down you need to copy to enough rows so that every
    possible instance that meets the conditon will be returned. In other words,
    how many people could be having a meal at the same time? 5? 20? That's how
    many rows down you would need to copy the formula to.

    Biff

    "sunfish62" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I searched the forums, but didn't see anything quite what I need.
    >
    > I am using Excel to handle hourly assignments, and I want to be able to
    > note when more than one person has a meal. Each person has a row; each
    > hour has a column. Like so:
    >
    > A B C D E F G
    > Name 10 11 12 13 14 15
    > Bob R M B
    > Harry R M R
    > Jenny B M
    >
    > What I want is to be able in the D column to list that BOTH Bob AND
    > Jenny are at lunch--but I can't figure out how. The MATCH function only
    > gets the first entry; I have seen some array formulas that combine MATCH
    > and INDEX, but can't get my head around the ideas.
    >
    > Help!
    >
    >
    > --
    > sunfish62
    > ------------------------------------------------------------------------
    > sunfish62's Profile:
    > http://www.excelforum.com/member.php...o&userid=24541
    > View this thread: http://www.excelforum.com/showthread...hreadid=381824
    >




  5. #5
    Biff
    Guest

    Re: Concatenate Multiple Instances in Array

    Hi!

    I plugged your sample data into a sheet and the range it occupied is: A1:G4

    Enter this formula in B6 as an array using the key combo of
    CTRL,SHIFT,ENTER:

    =IF(OR(COUNTIF(B$2:B$4,"M")<2,ISERROR(SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1)))),"",INDEX($A$2:$A$4,SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1))))

    Copy across to G6 then down to G8.

    If your actual data set is larger than what you posted (and I'm sure it is),
    then you need to change each instance of this portion of the formula:

    ROW($1:$3)

    If you have 10 names in column A then that would mean you have 10 rows of
    data (assuming there are no empty rows) so you would need to change
    ROW($1:$3) to ROW($1:$10).

    Then, when you copy down you need to copy to enough rows so that every
    possible instance that meets the conditon will be returned. In other words,
    how many people could be having a meal at the same time? 5? 20? That's how
    many rows down you would need to copy the formula to.

    Biff

    "sunfish62" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I searched the forums, but didn't see anything quite what I need.
    >
    > I am using Excel to handle hourly assignments, and I want to be able to
    > note when more than one person has a meal. Each person has a row; each
    > hour has a column. Like so:
    >
    > A B C D E F G
    > Name 10 11 12 13 14 15
    > Bob R M B
    > Harry R M R
    > Jenny B M
    >
    > What I want is to be able in the D column to list that BOTH Bob AND
    > Jenny are at lunch--but I can't figure out how. The MATCH function only
    > gets the first entry; I have seen some array formulas that combine MATCH
    > and INDEX, but can't get my head around the ideas.
    >
    > Help!
    >
    >
    > --
    > sunfish62
    > ------------------------------------------------------------------------
    > sunfish62's Profile:
    > http://www.excelforum.com/member.php...o&userid=24541
    > View this thread: http://www.excelforum.com/showthread...hreadid=381824
    >




  6. #6
    Biff
    Guest

    Re: Concatenate Multiple Instances in Array

    Hi!

    I plugged your sample data into a sheet and the range it occupied is: A1:G4

    Enter this formula in B6 as an array using the key combo of
    CTRL,SHIFT,ENTER:

    =IF(OR(COUNTIF(B$2:B$4,"M")<2,ISERROR(SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1)))),"",INDEX($A$2:$A$4,SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1))))

    Copy across to G6 then down to G8.

    If your actual data set is larger than what you posted (and I'm sure it is),
    then you need to change each instance of this portion of the formula:

    ROW($1:$3)

    If you have 10 names in column A then that would mean you have 10 rows of
    data (assuming there are no empty rows) so you would need to change
    ROW($1:$3) to ROW($1:$10).

    Then, when you copy down you need to copy to enough rows so that every
    possible instance that meets the conditon will be returned. In other words,
    how many people could be having a meal at the same time? 5? 20? That's how
    many rows down you would need to copy the formula to.

    Biff

    "sunfish62" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I searched the forums, but didn't see anything quite what I need.
    >
    > I am using Excel to handle hourly assignments, and I want to be able to
    > note when more than one person has a meal. Each person has a row; each
    > hour has a column. Like so:
    >
    > A B C D E F G
    > Name 10 11 12 13 14 15
    > Bob R M B
    > Harry R M R
    > Jenny B M
    >
    > What I want is to be able in the D column to list that BOTH Bob AND
    > Jenny are at lunch--but I can't figure out how. The MATCH function only
    > gets the first entry; I have seen some array formulas that combine MATCH
    > and INDEX, but can't get my head around the ideas.
    >
    > Help!
    >
    >
    > --
    > sunfish62
    > ------------------------------------------------------------------------
    > sunfish62's Profile:
    > http://www.excelforum.com/member.php...o&userid=24541
    > View this thread: http://www.excelforum.com/showthread...hreadid=381824
    >




  7. #7
    Biff
    Guest

    Re: Concatenate Multiple Instances in Array

    Hi!

    I plugged your sample data into a sheet and the range it occupied is: A1:G4

    Enter this formula in B6 as an array using the key combo of
    CTRL,SHIFT,ENTER:

    =IF(OR(COUNTIF(B$2:B$4,"M")<2,ISERROR(SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1)))),"",INDEX($A$2:$A$4,SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1))))

    Copy across to G6 then down to G8.

    If your actual data set is larger than what you posted (and I'm sure it is),
    then you need to change each instance of this portion of the formula:

    ROW($1:$3)

    If you have 10 names in column A then that would mean you have 10 rows of
    data (assuming there are no empty rows) so you would need to change
    ROW($1:$3) to ROW($1:$10).

    Then, when you copy down you need to copy to enough rows so that every
    possible instance that meets the conditon will be returned. In other words,
    how many people could be having a meal at the same time? 5? 20? That's how
    many rows down you would need to copy the formula to.

    Biff

    "sunfish62" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I searched the forums, but didn't see anything quite what I need.
    >
    > I am using Excel to handle hourly assignments, and I want to be able to
    > note when more than one person has a meal. Each person has a row; each
    > hour has a column. Like so:
    >
    > A B C D E F G
    > Name 10 11 12 13 14 15
    > Bob R M B
    > Harry R M R
    > Jenny B M
    >
    > What I want is to be able in the D column to list that BOTH Bob AND
    > Jenny are at lunch--but I can't figure out how. The MATCH function only
    > gets the first entry; I have seen some array formulas that combine MATCH
    > and INDEX, but can't get my head around the ideas.
    >
    > Help!
    >
    >
    > --
    > sunfish62
    > ------------------------------------------------------------------------
    > sunfish62's Profile:
    > http://www.excelforum.com/member.php...o&userid=24541
    > View this thread: http://www.excelforum.com/showthread...hreadid=381824
    >




  8. #8
    Biff
    Guest

    Re: Concatenate Multiple Instances in Array

    Hi!

    I plugged your sample data into a sheet and the range it occupied is: A1:G4

    Enter this formula in B6 as an array using the key combo of
    CTRL,SHIFT,ENTER:

    =IF(OR(COUNTIF(B$2:B$4,"M")<2,ISERROR(SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1)))),"",INDEX($A$2:$A$4,SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1))))

    Copy across to G6 then down to G8.

    If your actual data set is larger than what you posted (and I'm sure it is),
    then you need to change each instance of this portion of the formula:

    ROW($1:$3)

    If you have 10 names in column A then that would mean you have 10 rows of
    data (assuming there are no empty rows) so you would need to change
    ROW($1:$3) to ROW($1:$10).

    Then, when you copy down you need to copy to enough rows so that every
    possible instance that meets the conditon will be returned. In other words,
    how many people could be having a meal at the same time? 5? 20? That's how
    many rows down you would need to copy the formula to.

    Biff

    "sunfish62" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I searched the forums, but didn't see anything quite what I need.
    >
    > I am using Excel to handle hourly assignments, and I want to be able to
    > note when more than one person has a meal. Each person has a row; each
    > hour has a column. Like so:
    >
    > A B C D E F G
    > Name 10 11 12 13 14 15
    > Bob R M B
    > Harry R M R
    > Jenny B M
    >
    > What I want is to be able in the D column to list that BOTH Bob AND
    > Jenny are at lunch--but I can't figure out how. The MATCH function only
    > gets the first entry; I have seen some array formulas that combine MATCH
    > and INDEX, but can't get my head around the ideas.
    >
    > Help!
    >
    >
    > --
    > sunfish62
    > ------------------------------------------------------------------------
    > sunfish62's Profile:
    > http://www.excelforum.com/member.php...o&userid=24541
    > View this thread: http://www.excelforum.com/showthread...hreadid=381824
    >




  9. #9
    Biff
    Guest

    Re: Concatenate Multiple Instances in Array

    Hi!

    I plugged your sample data into a sheet and the range it occupied is: A1:G4

    Enter this formula in B6 as an array using the key combo of
    CTRL,SHIFT,ENTER:

    =IF(OR(COUNTIF(B$2:B$4,"M")<2,ISERROR(SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1)))),"",INDEX($A$2:$A$4,SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1))))

    Copy across to G6 then down to G8.

    If your actual data set is larger than what you posted (and I'm sure it is),
    then you need to change each instance of this portion of the formula:

    ROW($1:$3)

    If you have 10 names in column A then that would mean you have 10 rows of
    data (assuming there are no empty rows) so you would need to change
    ROW($1:$3) to ROW($1:$10).

    Then, when you copy down you need to copy to enough rows so that every
    possible instance that meets the conditon will be returned. In other words,
    how many people could be having a meal at the same time? 5? 20? That's how
    many rows down you would need to copy the formula to.

    Biff

    "sunfish62" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I searched the forums, but didn't see anything quite what I need.
    >
    > I am using Excel to handle hourly assignments, and I want to be able to
    > note when more than one person has a meal. Each person has a row; each
    > hour has a column. Like so:
    >
    > A B C D E F G
    > Name 10 11 12 13 14 15
    > Bob R M B
    > Harry R M R
    > Jenny B M
    >
    > What I want is to be able in the D column to list that BOTH Bob AND
    > Jenny are at lunch--but I can't figure out how. The MATCH function only
    > gets the first entry; I have seen some array formulas that combine MATCH
    > and INDEX, but can't get my head around the ideas.
    >
    > Help!
    >
    >
    > --
    > sunfish62
    > ------------------------------------------------------------------------
    > sunfish62's Profile:
    > http://www.excelforum.com/member.php...o&userid=24541
    > View this thread: http://www.excelforum.com/showthread...hreadid=381824
    >




  10. #10
    Biff
    Guest

    Re: Concatenate Multiple Instances in Array

    Hi!

    I plugged your sample data into a sheet and the range it occupied is: A1:G4

    Enter this formula in B6 as an array using the key combo of
    CTRL,SHIFT,ENTER:

    =IF(OR(COUNTIF(B$2:B$4,"M")<2,ISERROR(SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1)))),"",INDEX($A$2:$A$4,SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1))))

    Copy across to G6 then down to G8.

    If your actual data set is larger than what you posted (and I'm sure it is),
    then you need to change each instance of this portion of the formula:

    ROW($1:$3)

    If you have 10 names in column A then that would mean you have 10 rows of
    data (assuming there are no empty rows) so you would need to change
    ROW($1:$3) to ROW($1:$10).

    Then, when you copy down you need to copy to enough rows so that every
    possible instance that meets the conditon will be returned. In other words,
    how many people could be having a meal at the same time? 5? 20? That's how
    many rows down you would need to copy the formula to.

    Biff

    "sunfish62" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I searched the forums, but didn't see anything quite what I need.
    >
    > I am using Excel to handle hourly assignments, and I want to be able to
    > note when more than one person has a meal. Each person has a row; each
    > hour has a column. Like so:
    >
    > A B C D E F G
    > Name 10 11 12 13 14 15
    > Bob R M B
    > Harry R M R
    > Jenny B M
    >
    > What I want is to be able in the D column to list that BOTH Bob AND
    > Jenny are at lunch--but I can't figure out how. The MATCH function only
    > gets the first entry; I have seen some array formulas that combine MATCH
    > and INDEX, but can't get my head around the ideas.
    >
    > Help!
    >
    >
    > --
    > sunfish62
    > ------------------------------------------------------------------------
    > sunfish62's Profile:
    > http://www.excelforum.com/member.php...o&userid=24541
    > View this thread: http://www.excelforum.com/showthread...hreadid=381824
    >




  11. #11
    Biff
    Guest

    Re: Concatenate Multiple Instances in Array

    Hi!

    I plugged your sample data into a sheet and the range it occupied is: A1:G4

    Enter this formula in B6 as an array using the key combo of
    CTRL,SHIFT,ENTER:

    =IF(OR(COUNTIF(B$2:B$4,"M")<2,ISERROR(SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1)))),"",INDEX($A$2:$A$4,SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1))))

    Copy across to G6 then down to G8.

    If your actual data set is larger than what you posted (and I'm sure it is),
    then you need to change each instance of this portion of the formula:

    ROW($1:$3)

    If you have 10 names in column A then that would mean you have 10 rows of
    data (assuming there are no empty rows) so you would need to change
    ROW($1:$3) to ROW($1:$10).

    Then, when you copy down you need to copy to enough rows so that every
    possible instance that meets the conditon will be returned. In other words,
    how many people could be having a meal at the same time? 5? 20? That's how
    many rows down you would need to copy the formula to.

    Biff

    "sunfish62" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I searched the forums, but didn't see anything quite what I need.
    >
    > I am using Excel to handle hourly assignments, and I want to be able to
    > note when more than one person has a meal. Each person has a row; each
    > hour has a column. Like so:
    >
    > A B C D E F G
    > Name 10 11 12 13 14 15
    > Bob R M B
    > Harry R M R
    > Jenny B M
    >
    > What I want is to be able in the D column to list that BOTH Bob AND
    > Jenny are at lunch--but I can't figure out how. The MATCH function only
    > gets the first entry; I have seen some array formulas that combine MATCH
    > and INDEX, but can't get my head around the ideas.
    >
    > Help!
    >
    >
    > --
    > sunfish62
    > ------------------------------------------------------------------------
    > sunfish62's Profile:
    > http://www.excelforum.com/member.php...o&userid=24541
    > View this thread: http://www.excelforum.com/showthread...hreadid=381824
    >




  12. #12
    Biff
    Guest

    Re: Concatenate Multiple Instances in Array

    Hi!

    I plugged your sample data into a sheet and the range it occupied is: A1:G4

    Enter this formula in B6 as an array using the key combo of
    CTRL,SHIFT,ENTER:

    =IF(OR(COUNTIF(B$2:B$4,"M")<2,ISERROR(SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1)))),"",INDEX($A$2:$A$4,SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1))))

    Copy across to G6 then down to G8.

    If your actual data set is larger than what you posted (and I'm sure it is),
    then you need to change each instance of this portion of the formula:

    ROW($1:$3)

    If you have 10 names in column A then that would mean you have 10 rows of
    data (assuming there are no empty rows) so you would need to change
    ROW($1:$3) to ROW($1:$10).

    Then, when you copy down you need to copy to enough rows so that every
    possible instance that meets the conditon will be returned. In other words,
    how many people could be having a meal at the same time? 5? 20? That's how
    many rows down you would need to copy the formula to.

    Biff

    "sunfish62" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I searched the forums, but didn't see anything quite what I need.
    >
    > I am using Excel to handle hourly assignments, and I want to be able to
    > note when more than one person has a meal. Each person has a row; each
    > hour has a column. Like so:
    >
    > A B C D E F G
    > Name 10 11 12 13 14 15
    > Bob R M B
    > Harry R M R
    > Jenny B M
    >
    > What I want is to be able in the D column to list that BOTH Bob AND
    > Jenny are at lunch--but I can't figure out how. The MATCH function only
    > gets the first entry; I have seen some array formulas that combine MATCH
    > and INDEX, but can't get my head around the ideas.
    >
    > Help!
    >
    >
    > --
    > sunfish62
    > ------------------------------------------------------------------------
    > sunfish62's Profile:
    > http://www.excelforum.com/member.php...o&userid=24541
    > View this thread: http://www.excelforum.com/showthread...hreadid=381824
    >




  13. #13
    Biff
    Guest

    Re: Concatenate Multiple Instances in Array

    Hi!

    I plugged your sample data into a sheet and the range it occupied is: A1:G4

    Enter this formula in B6 as an array using the key combo of
    CTRL,SHIFT,ENTER:

    =IF(OR(COUNTIF(B$2:B$4,"M")<2,ISERROR(SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1)))),"",INDEX($A$2:$A$4,SMALL(IF(B$2:B$4="M",ROW($1:$3)),ROW(1:1))))

    Copy across to G6 then down to G8.

    If your actual data set is larger than what you posted (and I'm sure it is),
    then you need to change each instance of this portion of the formula:

    ROW($1:$3)

    If you have 10 names in column A then that would mean you have 10 rows of
    data (assuming there are no empty rows) so you would need to change
    ROW($1:$3) to ROW($1:$10).

    Then, when you copy down you need to copy to enough rows so that every
    possible instance that meets the conditon will be returned. In other words,
    how many people could be having a meal at the same time? 5? 20? That's how
    many rows down you would need to copy the formula to.

    Biff

    "sunfish62" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I searched the forums, but didn't see anything quite what I need.
    >
    > I am using Excel to handle hourly assignments, and I want to be able to
    > note when more than one person has a meal. Each person has a row; each
    > hour has a column. Like so:
    >
    > A B C D E F G
    > Name 10 11 12 13 14 15
    > Bob R M B
    > Harry R M R
    > Jenny B M
    >
    > What I want is to be able in the D column to list that BOTH Bob AND
    > Jenny are at lunch--but I can't figure out how. The MATCH function only
    > gets the first entry; I have seen some array formulas that combine MATCH
    > and INDEX, but can't get my head around the ideas.
    >
    > Help!
    >
    >
    > --
    > sunfish62
    > ------------------------------------------------------------------------
    > sunfish62's Profile:
    > http://www.excelforum.com/member.php...o&userid=24541
    > View this thread: http://www.excelforum.com/showthread...hreadid=381824
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1