+ Reply to Thread
Results 1 to 9 of 9

Why IF(VLOOKUP(A1,B:B,1,0)=A1,"1","0") doesn't work properly?

  1. #1
    Registered User
    Join Date
    05-29-2015
    Location
    Germany
    MS-Off Ver
    2010
    Posts
    27

    Why IF(VLOOKUP(A1,B:B,1,0)=A1,"1","0") doesn't work properly?

    When the A1 value is not found within column B, Excel returns N/A instead of 0. This doesn't make much sense to me as the formula is defined as return 1 if there is a match, otherwise return 0. What's the purpose of returning N/A in cases of inequality?

  2. #2
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Why IF(VLOOKUP(A1,B:B,1,0)=A1,"1","0") doesn't work properly?

    #N/A is a result of the VLOOKUP function.

    This gets passed to the IF function and is the final result of the IF function.

    Very few functions continue to calculate once an error is generated and the IF function is not one of them.

    Consider errors to be "fatal errors" once they're generated unless you specifically write the formula to account for them.
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  3. #3
    Forum Expert azumi's Avatar
    Join Date
    12-10-2012
    Location
    YK, Indonesia
    MS-Off Ver
    Excel 365
    Posts
    2,406

    Re: Why IF(VLOOKUP(A1,B:B,1,0)=A1,"1","0") doesn't work properly?

    Change to

    =IF(ISNA(VLOOKUP($A1,B:B,1,FALSE)=$A1),0,1)

  4. #4
    Registered User
    Join Date
    05-29-2015
    Location
    Germany
    MS-Off Ver
    2010
    Posts
    27

    Re: Why IF(VLOOKUP(A1,B:B,1,0)=A1,"1","0") doesn't work properly?

    Quote Originally Posted by Tony Valko View Post
    #N/A is a result of the VLOOKUP function.

    This gets passed to the IF function and is the final result of the IF function.

    Very few functions continue to calculate once an error is generated and the IF function is not one of them.

    Consider errors to be "fatal errors" once they're generated unless you specifically write the formula to account for them.
    Why is it an error though? The fact that A1 isn't present within B is the exact opposite of presence (i.e. if-then resulting in 1), thus it should be evaluated as if-otherwise (0). An error means a deviation from an expectation. This is however in accordance with my expectations - if it's not found for whatever reason in B, assign "0" to the field.


    Quote Originally Posted by azumi View Post
    =IF(ISNA(VLOOKUP($A1,B:B,1,FALSE)=$A1),0,1)
    I know how to fix this. I opened this thread to find out why N/A =/= A1 isn't assessed as if-otherwise.
    Last edited by regresss; 05-30-2015 at 05:51 PM.

  5. #5
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Why IF(VLOOKUP(A1,B:B,1,0)=A1,"1","0") doesn't work properly?

    One of these...

    =COUNT(MATCH(A1,B:B,0))

    =--(COUNTIF(B:B,A1)>0)

  6. #6
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Why IF(VLOOKUP(A1,B:B,1,0)=A1,"1","0") doesn't work properly?

    Quote Originally Posted by regresss View Post
    Why is it an error though?
    That's just the way the MS programmer designed the function.

    You'll discover a lot of "why does this do this" kind of outcomes.

  7. #7
    Registered User
    Join Date
    05-29-2015
    Location
    Germany
    MS-Off Ver
    2010
    Posts
    27

    Re: Why IF(VLOOKUP(A1,B:B,1,0)=A1,"1","0") doesn't work properly?

    Quote Originally Posted by Tony Valko View Post
    That's just the way the MS programmer designed the function.

    You'll discover a lot of "why does this do this" kind of outcomes.
    Do you agree with the way it is programmed? It can be imho useful to work with N/A values, but this is clearly not the case as "0" is never assigned in the practice. It's always either 1 or N/A. Why does it make me to define if-otherwise output then?

  8. #8
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Why IF(VLOOKUP(A1,B:B,1,0)=A1,"1","0") doesn't work properly?

    I can see the benefit of a 0 return as it doesn't "break" the formula or any downstream formulas but I've been using Excel for a lot of years so I'm used to dealing with the errors.

  9. #9
    Registered User
    Join Date
    08-27-2013
    Location
    Texas
    MS-Off Ver
    Excel 2010
    Posts
    30

    Re: Why IF(VLOOKUP(A1,B:B,1,0)=A1,"1","0") doesn't work properly?

    LOOKUP(A1,B:B,1,0)=A1

    With it not in Column B - Wouldn't it return a Err.
    Then it tries to compare Err = A1 and freaks out.
    Last edited by briguin; 05-30-2015 at 06:22 PM.

+ 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. Replies: 3
    Last Post: 01-02-2014, 02:15 PM
  2. Replies: 4
    Last Post: 11-17-2013, 12:05 PM
  3. [SOLVED] How to USE """"" cells count """"" change font color
    By austin123456 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 10-09-2013, 06:14 AM
  4. Open files from FTP server (works with "servername" but doesn't work with "ip address")
    By adammsu1983 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-24-2012, 04:30 PM
  5. IF(VLOOKUP("MYDATA", MYNAME, 4) = 0, "TRUE", "FALSE")
    By Souris in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-17-2005, 01: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