+ Reply to Thread
Results 1 to 4 of 4

Excel 2007 : Vlookup help with merged cell data.

  1. #1
    Registered User
    Join Date
    02-17-2011
    Location
    Ontario, Canada
    MS-Off Ver
    Excel 2003
    Posts
    2

    Vlookup help with merged cell data.

    Hello everyone, I was wondering if I could get some help with this.
    I am trying to be able to read all the email addresses from 1 worksheet to another.

    Emails = All emails where Sheet1(FirstName + LastName) = Sheet2 (FirstName + LastName)

    problem here is that Sheet1 has merged cells that can vary by amount of emails.
    I have attached a workbook containing two sheets displaying my issue.

    I have tried VLOOKUP but it looks like it can only manage to pull the first email not a range of them.

    Any help is very much appreciated.
    Attached Files Attached Files

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

    Re: Vlookup help with merged cell data.

    Merged cells are not a good thing....

    Add a helper column in D2 of Sheet1 enter:

    =LOOKUP(REPT("z",255),A$2:A2)&"^"&LOOKUP(REPT("z",255),B$2:B2)

    and in E2 enter:

    =D2&"_"&COUNTIF(D$2:D2,D2)

    copy both down the rows.

    Then in C2 of Sheet2, enter:

    =IFERROR(INDEX(Sheet1!$C:$C,MATCH($B2&"^"&$A2&"_"&COLUMNS($A$1:A$1),Sheet1!$E:$E,0)),"")

    copied down the rows and across as many columns as you wish.
    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
    02-17-2011
    Location
    Ontario, Canada
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Vlookup help with merged cell data.

    Quote Originally Posted by NBVC View Post
    Merged cells are not a good thing....

    Add a helper column in D2 of Sheet1 enter:

    =LOOKUP(REPT("z",255),A$2:A2)&"^"&LOOKUP(REPT("z",255),B$2:B2)

    and in E2 enter:

    =D2&"_"&COUNTIF(D$2:D2,D2)

    copy both down the rows.

    Then in C2 of Sheet2, enter:

    =IFERROR(INDEX(Sheet1!$C:$C,MATCH($B2&"^"&$A2&"_"&COLUMNS($A$1:A$1),Sheet1!$E:$E,0)),"")

    copied down the rows and across as many columns as you wish.
    That works nearly perfect! Wow thank you for the quick response.
    I have 1 quick question though. Is there anyway I could have all those emails show up in 1 column?
    Separated by commas instead of into new columns?

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

    Re: Vlookup help with merged cell data.

    Try this then.

    Add this UDF to your VB editor (Alt+F11, Insert|Module)

    and then paste:

    Please Login or Register  to view this content.
    Then keep formula in D2 of Sheet 1, copied down.

    You don't need the formula in column E

    Then In C2 of Sheet2 enter formula:

    =SUBSTITUTE(TRIM(aconcat(IF(Sheet1!$D$2:$D$7=B2&"^"&A2,Sheet1!$C$2:$C$7,"")," "))," ",",")

    confirm it with CTRL+SHIFT+ENTER not just ENTER and copy it down the column.

+ 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