+ Reply to Thread
Results 1 to 3 of 3

VLook up not working

  1. #1
    Registered User
    Join Date
    11-11-2015
    Location
    FLorida
    MS-Off Ver
    Office 365
    Posts
    5

    VLook up not working

    This is my formula:

    =IFERROR(VLOOKUP($A24,ActiveEmployees!A:D,4,FALSE),"No Match")

    In Cell A24: I have the value: C00666314

    On the ActiveEmployees tab on cell D1863 I have the value: C00666314

    But the value return No Match.

    I changed both colums to text. The formula works for one cell but not others any ideas?

    Also tried: IFERROR(VLOOKUP("*"&$A24&"*",ActiveEmployees!A:D,4,FALSE),"No Match")

    Something else is strange about my excel sheet:

    When I try this formula: =IFERROR(VLOOKUP($A26,ActiveEmployees!D:D,1,FALSE),"No Match")
    it works on a different cell but I have to click on enter after the formula otherwise the previous value just gets copied.

    I have over 1000 records so I can't keep clicking on enter for every field.

  2. #2
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: VLook up not working

    Quote Originally Posted by LastJedi View Post
    =IFERROR(VLOOKUP($A24,ActiveEmployees!A:D,4,FALSE),"No Match")

    In Cell A24: I have the value: C00666314

    On the ActiveEmployees tab on cell D1863 I have the value: C00666314
    Vlookup is Zoolander Challenged. It can only go 'To The RIGHT'
    It finds a match for your lookup value in the LEFT column of the referenced range.
    Then returns a value from the designated column 'To The Right' of the column it found the match in.

    It seems you want the opposite.
    Find the match in column D, but return the corresponding value from column A (To the LEFT)

    You'll need INDEX/MATCH for that

    =IFERROR(INDEX(ActiveEmployees!A:A,MATCH($A24,ActiveEmployees!D:D,0)),"No Match")

  3. #3
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS 365 Family 64-bit 2411
    Posts
    26,754

    Re: VLook up not working

    The VLOOKUP function looks in the first column--column D--for your value from A24. If you are looking for a value in column D, what result do you want? Are you just trying to determine if there is a match in column D? If so, the last formula you show should work (although I would have used MATCH). But I have no idea what this means:
    it works on a different cell but I have to click on enter after the formula otherwise the previous value just gets copied.

    I have over 1000 records so I can't keep clicking on enter for every field.
    Jeff
    | | |會 |會 |會 |會 | |:| | |會 |會
    Read the rules
    Use code tags to [code]enclose your code![/code]

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Vlook Up function not working Properly, donot know, need help
    By Bitto in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 04-06-2015, 08:44 AM
  2. Vlook up not working on multiple columns
    By benji8798 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 05-05-2013, 10:18 PM
  3. [SOLVED] Do I use Vlook Up here & if so how?
    By karryan in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 04-29-2013, 04:14 PM
  4. Vlook & Macro not working together
    By dstrdOne in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-09-2013, 04:43 PM
  5. Help fix my Vlook please
    By Mycotopian in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-08-2007, 04:59 AM
  6. vlook up
    By KL in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 09-06-2005, 06:05 AM
  7. [SOLVED] vlook up
    By Sean in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 12:05 AM

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