Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Rather than #N/A being returned from a lookup for a value that is not in the
lookup table can I replace the returned #N/A with a zero? Without being able to do this I am unable sum the returned values. |
#2
![]() |
|||
|
|||
![]()
IF(ISNA(YourLookupFormula),0,YourLookupFormula)
Vaya con Dios, Chuck, CABGx3 "marketingman" wrote: Rather than #N/A being returned from a lookup for a value that is not in the lookup table can I replace the returned #N/A with a zero? Without being able to do this I am unable sum the returned values. |
#3
![]() |
|||
|
|||
![]()
Try this:
If(isna(vlookup(your lookup)),0,vlookup(your lookup)) |
#4
![]() |
|||
|
|||
![]()
Hi,
To sum the values ignoring the error values, you may want to use the following formula. You need not alter your vlookup formula In range A1:A4, you have the following 1 2 3 #DIV/0! In cell A6, array enter (Ctrl+Shift+Enter) the following formula SUM(IF(NOT(ISERROR(A1:A4)),A1:A4)) Regards, Ashish Mathur "marketingman" wrote: Rather than #N/A being returned from a lookup for a value that is not in the lookup table can I replace the returned #N/A with a zero? Without being able to do this I am unable sum the returned values. |
#5
![]() |
|||
|
|||
![]()
1.
=SUM(Range,"<#N/A") 2. If you're sending the workbook across countries... =SUMIF(Range,"<"&NA()) marketingman wrote: Rather than #N/A being returned from a lookup for a value that is not in the lookup table can I replace the returned #N/A with a zero? Without being able to do this I am unable sum the returned values. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Have Vlookup return a Value of 0 instead of #N/A | Excel Worksheet Functions | |||
Using a Vlookup to return values in a data list? | Excel Worksheet Functions | |||
Vlookup of an if statement return | Excel Worksheet Functions | |||
Vlookup - return row no. instead of value | Excel Discussion (Misc queries) | |||
Can VLOOKUP return multiple answers based on several identical lo. | Excel Worksheet Functions |