+ Reply to Thread
Results 1 to 6 of 6

vlookup displays "0" if reference cell is blank?

Hybrid View

Back2Basics vlookup displays "0" if... 01-22-2009, 12:49 PM
mewingkitty Could change the last section... 01-22-2009, 12:55 PM
Back2Basics I had tried that, it seems... 01-22-2009, 01:00 PM
Back2Basics And thank you Donkey, if that... 01-22-2009, 01:02 PM
Back2Basics Quote: First off let me point... 01-22-2009, 01:04 PM
DonkeyOte =IF(OR($C$4="",$C$4="No... 01-22-2009, 12:57 PM
  1. #1
    Forum Contributor
    Join Date
    12-03-2008
    Location
    Cardiff
    MS-Off Ver
    2003
    Posts
    123

    vlookup displays "0" if reference cell is blank?

    I am trying to use vlookup so that when each site name is selected the relevant comments for that site are displayed.

    I have a formula that is working, but it displays "0" if there is nothing in the cell. How do i get it to display a blank cell if thre is nothing in the reference cell.

    this is the formula that i am using:

    =IF($C$4="", "", IF($C$4="No Match", "", (VLOOKUP($C$4,Comments!$A$2:$U$295, 5,0))))

    The site name appears in C4, and is selected from another sheet in the workbook.
    Last edited by Back2Basics; 01-22-2009 at 01:02 PM.

  2. #2
    Forum Contributor mewingkitty's Avatar
    Join Date
    09-29-2008
    Location
    Fort McMurray, Alberta, Canada
    MS-Off Ver
    Excel 2003
    Posts
    949
    Could change the last section of the formula to something along the lines of
    if(VLOOKUP($C$4,Comments!$A$2:$U$295, 5,0)=0,"",VLOOKUP($C$4,Comments!$A$2:$U$295, 5,0))))
    =IF(AND(OR(BLONDE,BRUNETTE,REDHEAD),OR(MY PLACE,HER PLACE),ME),BOW-CHICKA-BOW-WOW,ANOTHER NIGHT ON THE INTERNET)

  3. #3
    Forum Contributor
    Join Date
    12-03-2008
    Location
    Cardiff
    MS-Off Ver
    2003
    Posts
    123
    I had tried that, it seems the logical step - but when i hit enter it just displays the formula as text.


    *tried it again before sending post*

    It originally did the same, then i noticed that the "IF" was lower case - Normally okay, but when i changed it to upper case it worked!

    Thanks for your time Kitty

  4. #4
    Forum Contributor
    Join Date
    12-03-2008
    Location
    Cardiff
    MS-Off Ver
    2003
    Posts
    123
    And thank you Donkey, if that is your real name.

    I didn't realise quit how useful the formating can be, cheers!

  5. #5
    Forum Contributor
    Join Date
    12-03-2008
    Location
    Cardiff
    MS-Off Ver
    2003
    Posts
    123
    Quote: First off let me point out that the above is really no different to your earlier formula just shortened slightly and lookup range reduced to A:E given you're returning value from E you need not reference anything beyond that.

    I have an extended range because the cell below this one references from 7, below that from 9 etc until 19....

    thanks for the concern though

  6. #6
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531
    =IF(OR($C$4="",$C$4="No Match"),"",VLOOKUP($C$4,Comments!$A$2:$E$295,5,0))
    First off let me point out that the above is really no different to your earlier formula just shortened slightly and lookup range reduced to A:E given you're returning value from E you need not reference anything beyond that.

    To answer your question... if it's purely presentational (as it would seem) you're best bet would be to use a Custom Format on the cell as opposed to double evaluating the entire VLOOKUP, eg:

    [=0]"";General
    So 0 will persist in the cell but the cell will appear as blank... this is preferable to doing the VLOOKUP twice over.
    Last edited by DonkeyOte; 01-22-2009 at 12:59 PM. Reason: code tags

+ 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