G Guest Sep 17, 2004 #1 I am trying to write a formula in excel to put a 0 instead of #N/A when my VLOOKUP formula does not find data in the lookup area.
I am trying to write a formula in excel to put a 0 instead of #N/A when my VLOOKUP formula does not find data in the lookup area.
R Rob Bovey Sep 17, 2004 #2 BBanalyst said: I am trying to write a formula in excel to put a 0 instead of #N/A when my VLOOKUP formula does not find data in the lookup area. Click to expand... The standard way to do this is: =IF(ISNA(VLOOKUP(....)),0,VLOOKUP(....)) -- Rob Bovey, MCSE, MCSD, Excel MVP Application Professionals http://www.appspro.com/ * Please post all replies to this newsgroup * * I delete all unsolicited e-mail responses *
BBanalyst said: I am trying to write a formula in excel to put a 0 instead of #N/A when my VLOOKUP formula does not find data in the lookup area. Click to expand... The standard way to do this is: =IF(ISNA(VLOOKUP(....)),0,VLOOKUP(....)) -- Rob Bovey, MCSE, MCSD, Excel MVP Application Professionals http://www.appspro.com/ * Please post all replies to this newsgroup * * I delete all unsolicited e-mail responses *
G Guest Sep 20, 2004 #3 BBanalyst said: I am trying to write a formula in excel to put a 0 instead of #N/A when my VLOOKUP formula does not find data in the lookup area. Click to expand... Try this =IF(ISERROR(VLOOKUP(A1,B110,2,FALSE))=TRUE,0,VLOOKUP(A1,B110,2,FALSE))
BBanalyst said: I am trying to write a formula in excel to put a 0 instead of #N/A when my VLOOKUP formula does not find data in the lookup area. Click to expand... Try this =IF(ISERROR(VLOOKUP(A1,B110,2,FALSE))=TRUE,0,VLOOKUP(A1,B110,2,FALSE))