+ Reply to Thread
Results 1 to 5 of 5

I need Vlookup to return a blank

Hybrid View

  1. #1
    Eaglered
    Guest

    I need Vlookup to return a blank

    I need Vlookup to return a blank if the appropriate cell is empty.

    Thank you so much . . . .Y'all have been extremely helpful!!

    J.

  2. #2
    PC
    Guest

    Re: I need Vlookup to return a blank

    IF("lookupcell"="","",
    VLOOKUP("lookupcell","lookuprange","returnvaluecolumn","false??"))




    "Eaglered" <Eaglered@discussions.microsoft.com> wrote in message
    news:CE83289E-F0CB-4684-B836-FFE6D3E2DC82@microsoft.com...
    > I need Vlookup to return a blank if the appropriate cell is empty.
    >
    > Thank you so much . . . .Y'all have been extremely helpful!!
    >
    > J.




  3. #3
    Tony P.
    Guest

    RE: I need Vlookup to return a blank

    This will work -

    =if(vlookup(,,,)=[whatever the cause of the blank is],"",vlookup(,,,))

    "Eaglered" wrote:

    > I need Vlookup to return a blank if the appropriate cell is empty.
    >
    > Thank you so much . . . .Y'all have been extremely helpful!!
    >
    > J.


  4. #4
    Chip Pearson
    Guest

    Re: I need Vlookup to return a blank

    Try something like

    =IF(ISERROR(VLOOKUP(...)),"",VLOOKUP(...))


    --
    Cordially,
    Chip Pearson
    Microsoft MVP - Excel
    Pearson Software Consulting, LLC
    www.cpearson.com



    "Eaglered" <Eaglered@discussions.microsoft.com> wrote in message
    news:CE83289E-F0CB-4684-B836-FFE6D3E2DC82@microsoft.com...
    >I need Vlookup to return a blank if the appropriate cell is
    >empty.
    >
    > Thank you so much . . . .Y'all have been extremely helpful!!
    >
    > J.




  5. #5
    Dave Peterson
    Guest

    Re: I need Vlookup to return a blank

    Instead of returning a 0?

    =if(vlookup()="","",vlookup())

    And to get rid of the #n/a's:

    =if(iserror(vlookup()),"missing",if(vlookup()="","",vlookup()))



    Eaglered wrote:
    >
    > I need Vlookup to return a blank if the appropriate cell is empty.
    >
    > Thank you so much . . . .Y'all have been extremely helpful!!
    >
    > J.


    --

    Dave Peterson

+ 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