• 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.

Return blank value instead of #N/A

TomNR

Member
Hi all,

I am having difficulty removing the #N/A value when I run this formula:

=IF($O4='2'!$L$2, VLOOKUP($B$1,Week2[[Name]:[Saturday ]],5,FALSE), "")

As you can see I can't use the IFERROR or IFNA option as I am already querying =IF($O4='2'!$L$2

Does anyone know how I can just have a blank value instead of #N/A?

Thank you all in advance!
 
Hi TomNR,


I think the reason behind getting error that your vlookup
formula not finding the B1 Value(Template) in your given range Week2[[Name]:[Saturday when your ccondition $O4='2'!$L$2 is tru

try this one..

=IF($O4='2'!$L$2, IFERROR(VLOOKUP($B$1,Week2[[Name]:[Saturday ]],5,FALSE),""),"")
 
Back
Top