+ Reply to Thread
Results 1 to 6 of 6

Matching Item numbers in two different worksheets using item description

  1. #1
    Registered User
    Join Date
    08-22-2008
    Location
    cayman islands
    Posts
    5

    Matching Item numbers in two different worksheets using item description

    Hi,

    I'm trying to match item numbers in the inventory tab with the item numbers in the BT tab using the description title as the common thing. I have added a column called BT Itme number on Inventory tb as this is where i want to display the item number from BT tab.

    Problem is the description details in Inventory tab is different from the description in BT tab.

    I'm trying to get a formula that allows e to do this without doing it row by row (item by item) like i have done on cell D34 & D49 on Inventory tab.

    Appreciate any assistance.

    Regards,
    Lidoxy
    Attached Files Attached Files

  2. #2
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Matching Item numbers in two different worksheets using item description

    How about...

    =INDEX(BT!$A$2:$A$255,MATCH(C34,BT!$B$2:$B$255,0))

    What version of Excel are you using?

    If 2007 you can use Iferror to return a zero

    =IFERROR(INDEX(BT!$A$2:$A$255,MATCH(C34,BT!$B$2:$B$255,0)),0)

    2003

    =IF(ISNA(INDEX(BT!$A$2:$A$255,MATCH(C34,BT!$B$2:$B$255,0))),0,INDEX(BT!$A$2:$A$255,MATCH(C34,BT!$B$2:$B$255,0)))
    Last edited by jeffreybrown; 07-26-2011 at 09:11 PM.
    HTH
    Regards, Jeff

  3. #3
    Registered User
    Join Date
    08-22-2008
    Location
    cayman islands
    Posts
    5

    Re: Matching Item numbers in two different worksheets using item description

    Thanks Jeff.

    I'm using excel 2003.

    With the 1st formula, i got #NA, with the 2nd formula i got #Name? and with the 3rd formula i got 0. Only cell D6 and D34 return a value that's close to what i am looking for (486), but this is the item number for the corona.

    Thanks,
    Lidoxy

  4. #4
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Matching Item numbers in two different worksheets using item description

    What's wrong with this.

    Please tell me what you expect that is not here?
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    08-22-2008
    Location
    cayman islands
    Posts
    5

    Re: Matching Item numbers in two different worksheets using item description

    Quote Originally Posted by jeffreybrown View Post
    What's wrong with this.

    Please tell me what you expect that is not here?
    Thanks Jeff - nothing is wrong with the formulae. Just wondering if there's anything i can do to make say cell D14 return value 281 for the sam adams lager description. Or do the descriptions have to have the same characters?

    Thanks again,
    Lidoxy

  6. #6
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Matching Item numbers in two different worksheets using item description

    Yes they need to match.

    You could try Fuzzy Matching

    I've never actually used this for my purposes, but I know it works.

    You may have to play with the layout of your data, but if you get stuck maybe either somebody here has some ideas or you can reply to the thread above.

+ 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