A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Use following for correct results -
=IFERROR(VLOOKUP(D2,'IM file'!C:AB,25,0),"")
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
I have a similar problem in that I am using Iferror and vlookup and it works in some columns and then it others it doesn't. It just repeats the same figure down or makrs them all blank. if I remove the if error then and just use vlookup , the formula works but I have all the N/A?s
IFERROR(VLOOKUP(D2,'IM file'!C:BE,54),""). This works
=VLOOKUP(D2,'IM file'!C:AB,25,) THis works but IFERROR(=(VLOOKUP(D2,'IM file'!C:AB,25),"") doesn't
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Use following for correct results -
=IFERROR(VLOOKUP(D2,'IM file'!C:AB,25,0),"")
thanks thats worked for me
Hi Vijay,
I had tried that but It doesnt return the correct results. It wil populate the N/A as blanks but then it will return the wrong results. So for the file I am working on I have about 2000 lines that should be populated and the rest would be blank. This is just returning about 5 or 6 results repeatedly . It doesnt make sense
"=" sign can not be inside in any formual not only for IFERROR..
Hence, you have to write -
=IFERROR(VLOOKUP(D2,'IM file'!C:AB,25),"")