+ Reply to Thread
Results 1 to 3 of 3

Need Index and Match to return multiples values in the same cell

  1. #1
    Registered User
    Join Date
    08-15-2013
    Location
    Montreal
    MS-Off Ver
    Excel 2010
    Posts
    2

    Question Need Index and Match to return multiples values in the same cell

    Hi, I'm working on a RACI chart, I need to attribute Tasks to team members. As the RACI is quite large and complex, I want to recap by tasks who's is responsible , accountable....
    So I used a Index/match formula, but as I may have many person as accountable or support, I need to return multiples values in the same cell.

    No clue how to do that ... Anyone??

    (for security issue I can't upload my file)

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Need Index and Match to return multiples values in the same cell

    You would need a UDF...

    see here for a sample that you can try to adapt to your workbook.

    http://www.excelforum.com/excel-gene...ml#post2722784
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    08-15-2013
    Location
    Montreal
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: Need Index and Match to return multiples values in the same cell

    Nice Thanks a lot!

    I also try this:
    As VBA:

    Function MYVLOOKUP(lookupval, lookuprange As Range, indexcol As Long)
    Dim r As Range
    Dim result As String
    result = ""
    For Each r In lookuprange
    If r = lookupval Then
    result = result & " " & r.Offset(0, indexcol - 1)
    End If
    Next r
    MYVLOOKUP = result
    End Function


    Then as formula: =MYVLOOKUP(A1,A1:A20,2)

    Both works!
    thanks again!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Index/Match to return values to compare
    By Iptgfs in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 03-01-2013, 12:39 PM
  2. Replies: 17
    Last Post: 12-05-2012, 09:01 PM
  3. Replies: 2
    Last Post: 07-17-2012, 11:53 AM
  4. [SOLVED] How to use Index Match to return multiple values
    By pingpoeng in forum Excel General
    Replies: 2
    Last Post: 04-09-2012, 09:58 PM
  5. Return list of values index/match
    By spivieguy1 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 08-26-2009, 02:49 PM

Tags for this Thread

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