+ Reply to Thread
Results 1 to 31 of 31

Newbie question: Matching data/2 wkshts copying info over

  1. #1
    Registered User
    Join Date
    07-25-2005
    Posts
    1

    Newbie question: Matching data/2 wkshts copying info over

    I can't seem to get this right.
    I have 2 worksheets with Userid's, Employee First and Last names on both. One has about 43000 people in it, and the second has 7300.

    I'm trying to match any userid's on page 1 with any on page 2. If there is an exact match, I need to copy over the row with that userid on page 2 over to the same row on page 1.


    This should be easy, but I'm having trouble locking it down.

    Thanks,

  2. #2
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  3. #3
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  4. #4
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  5. #5
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  6. #6
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  7. #7
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  8. #8
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  9. #9
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  10. #10
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  11. #11
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  12. #12
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  13. #13
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  14. #14
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  15. #15
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  16. #16
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  17. #17
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  18. #18
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  19. #19
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  20. #20
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  21. #21
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  22. #22
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  23. #23
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  24. #24
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  25. #25
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  26. #26
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  27. #27
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  28. #28
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  29. #29
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  30. #30
    Adrian M
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    VLOOKUP would provide a solution. Look in Excel help files how to use or
    watch the video clip at http://www.auditexcel.co.za/lookupandreference.html .

    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


  31. #31
    Marcus Langell
    Guest

    RE: Newbie question: Matching data/2 wkshts copying info over

    OK, so you have new names on Sheet 2 that you want to use to overwrite old
    ones on Sheet 1? If this something that shouldn't be done on a daily basis,
    this is how I would do it:
    (Assuming you have three columns on both sheets; UserId, FirstName, LastName)

    1. In D1 of sheet 1, enter the formula
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,2,FALSE),B1,VLOOKUP(A1,Sheet2!A:D,2,FALSE))
    and in E1
    =IF(ISERROR(VLOOKUP(A1,Sheet2!A:D,3,FALSE),C1,VLOOKUP(A1,Sheet2!A:D,3,FALSE)).

    2: Copy down the formulas.

    3: Copy columns D and E and paste special as values on columns B and C

    /Marcus




    "dperry11273" wrote:

    >
    > I can't seem to get this right.
    > I have 2 worksheets with Userid's, Employee First and Last names on
    > both. One has about 43000 people in it, and the second has 7300.
    >
    > I'm trying to match any userid's on page 1 with any on page 2. If
    > there is an exact match, I need to copy over the row with that userid
    > on page 2 over to the same row on page 1.
    >
    >
    > This should be easy, but I'm having trouble locking it down.
    >
    > Thanks,
    >
    >
    > --
    > dperry11273
    > ------------------------------------------------------------------------
    > dperry11273's Profile: http://www.excelforum.com/member.php...o&userid=25569
    > View this thread: http://www.excelforum.com/showthread...hreadid=389993
    >
    >


+ 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