• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Formula that displays text if 0 found

Yandeez

Member
I use a simple Vlookup that pulls the value from a column that may or may not have data in the cell. Since the Vlookup finds my search criteria (which is correct) it doesn't display an #N/A - it simply displays the number 0. I need a formula that changes that 0 to the text "No". As always, any help is greatly appreciated.
 
I use a simple Vlookup that pulls the value from a column that may or may not have data in the cell. Since the Vlookup finds my search criteria (which is correct) it doesn't display an #N/A - it simply displays the number 0. I need a formula that changes that 0 to the text "No". As always, any help is greatly appreciated.
Hi,

Try this like this

=IF(VLOOKUP(C1,A1:B20,2,FALSE)=0,"No",VLOOKUP(C1,A1:B20,2,FALSE))
 
Back
Top