+ Reply to Thread
Results 1 to 3 of 3

Vlookup, return zero if not found

  1. #1
    molsansk
    Guest

    Vlookup, return zero if not found

    I have a formula where I use multiple lookups to return several values, which
    I add together. e.g =vlookup(A) + vlookup(B) +vlookup (C)

    If vlookup A = 1, B = 3, & C = 2, everything is good and the result = 7.

    But in some cases the value one of them is looking up does not exist in the
    array.
    If this happens it causes the whole formula to return #N/A. I would like it
    to give the one that has the #N/A to return the value of zero. So say
    vlookup A = #N/A, my total formula would = 6

    Any help appreciated. Thanks.

  2. #2
    Dave Peterson
    Guest

    Re: Vlookup, return zero if not found

    =if(iserror(vlookup(...)),0,vlookup(...))
    +if(iserror(vlookup(...)),0,vlookup(...))
    +if(iserror(vlookup(...)),0,vlookup(...))
    ....



    molsansk wrote:
    >
    > I have a formula where I use multiple lookups to return several values, which
    > I add together. e.g =vlookup(A) + vlookup(B) +vlookup (C)
    >
    > If vlookup A = 1, B = 3, & C = 2, everything is good and the result = 7.
    >
    > But in some cases the value one of them is looking up does not exist in the
    > array.
    > If this happens it causes the whole formula to return #N/A. I would like it
    > to give the one that has the #N/A to return the value of zero. So say
    > vlookup A = #N/A, my total formula would = 6
    >
    > Any help appreciated. Thanks.


    --

    Dave Peterson

  3. #3
    Carim
    Guest

    Re: Vlookup, return zero if not found

    Hi,

    Test your result with an IF , such as :

    =IF(ISNA(vlookup(A)),0,vlookup(A))


    HTH
    Cheers

    Carim


+ 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