+ Reply to Thread
Results 1 to 5 of 5

VLookup function

  1. #1
    Registered User
    Join Date
    05-25-2010
    Location
    Deep South
    MS-Off Ver
    Excel 2007
    Posts
    14

    VLookup function

    Good Morning Gentlemen,

    I am in the process of coverting a fixed asset database to a new software package. The first step was to break out part numbers from the description and put in a column by them self. The part number also has an asset id in a seperate column. The first conversion failed to happen and I am restarting the entire process with fresh data. I want to avoid having to key in the thousands of part numbers from the description again or do any copy and pasting in mass amounts. Is there any way v lookup can match the part number and asset id from the first spread sheet and assign the part number to the asset id on my new spread sheet.

    Thanks, Eddie
    Last edited by bigduke6; 03-17-2011 at 05:34 PM.

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

    Re: V look up the right function this task ?

    So you have a list of assets on both sheets, and you have a list of part ids only in one sheet. You want to match the asset numbers and pull the appropriate part ids? Is that correct?
    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
    05-25-2010
    Location
    Deep South
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: V look up the right function this task ?

    Quote Originally Posted by NBVC View Post
    So you have a list of assets on both sheets, and you have a list of part ids only in one sheet. You want to match the asset numbers and pull the appropriate part ids? Is that correct?
    Yes Sir....

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

    Re: V look up the right function this task ?

    Assuming then, that the List of Assets and corresponding Part IDs is in Sheet1, A1:B100

    try:

    =Vlookup(A2,'Sheet1'!$A$1:$B$100,2,FALSE)

    Where A2 is first asset to look for in the other sheet, adjust ranges to suit.

    If you have assests in column B and parts in column A, then try:

    =INDEX('Sheet1'!$A$1:$A$100,MATCH(A2,'Sheet1'!$B$1:$B$100,0))

  5. #5
    Registered User
    Join Date
    05-25-2010
    Location
    Deep South
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: V look up the right function this task ?

    Quote Originally Posted by NBVC View Post
    Assuming then, that the List of Assets and corresponding Part IDs is in Sheet1, A1:B100

    try:

    =Vlookup(A2,'Sheet1'!$A$1:$B$100,2,FALSE)

    Where A2 is first asset to look for in the other sheet, adjust ranges to suit.

    If you have assests in column B and parts in column A, then try:

    =INDEX('Sheet1'!$A$1:$A$100,MATCH(A2,'Sheet1'!$B$1:$B$100,0))
    Success !! Thank You NBVC

+ 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