+ Reply to Thread
Results 1 to 6 of 6

vlookup with left function

  1. #1
    Registered User
    Join Date
    06-09-2011
    Location
    Philippines
    MS-Off Ver
    Excel 2013
    Posts
    49

    vlookup with left function

    Hi,

    I'm using Vlookup to lookup the first 2 letters of a name, but it's somehow displaying a different result.
    I might be missing something with the formula, but I can't figure it out.

    TIA.
    Attached Files Attached Files

  2. #2
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: vlookup with left function

    Hi,

    Try: =INDEX($B$1:$B$4,MATCH(LEFT(D1,2),LEFT($A$1:$A$4,2),0))

    Entered in E1 and confirmed with Ctrl+Shift+Enter as it's an array formula and then copied down.

    Dom
    "May the fleas of a thousand camels infest the crotch of the person who screws up your day and may their arms be too short to scratch..."

    Use code tags when posting your VBA code: [code] Your code here [/code]

    Remember, saying thanks only takes a second or two. Click the little star to give some Rep if you think an answer deserves it.

  3. #3
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699

    Re: vlookup with left function

    Try using a wildcard.....and 4th argument of VLOOKUP should be zero

    =VLOOKUP(LEFT(D1,2)&"*",$A$1:$B$4,2,0)
    Audere est facere

  4. #4
    Registered User
    Join Date
    06-09-2011
    Location
    Philippines
    MS-Off Ver
    Excel 2013
    Posts
    49

    Re: vlookup with left function

    Thank you very much Domski and daddylonglegs!

    Both your suggestions worked great.

    Though I was just wondering why wasn't the formula working, I'd appreciate it if you could explain... but if not, thanks again for the help.

  5. #5
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699

    Re: vlookup with left function

    Your formula was this

    =VLOOKUP(LEFT(D1,2),$A$1:$B$4,2,2)

    It's not usual to use 2 as the final argument, the options are TRUE (1) or FALSE (0). If you use 2 it behaves like 1.

    When you use 1 as the final argument the lookup range (A1:A4 here) needs to be sorted ascending. As A1:A4 isn't sorted ascending the results are "odd". If you use this version instead

    =VLOOKUP(LEFT(D1,2),$A$1:$B$4,2,0)

    Then you'd get #N/A for your examples because you are trying to find a match for "De" or "Kr" in A1:A4 and neither of those values exist.

    With my suggestion you are looking for "De*" and "Kr*" where * is a wildcard representing zero or more characters....so you do get matches for those

  6. #6
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: vlookup with left function

    And mine as proved by DL was totally over complicating the situation

    Dom

+ 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