Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Trying to sum a column that was built using VLOOKUP. Several of the values
returned in the column are #NA. The column will not sum. How can we write the VLOOKUP formula to return error values = to 0 rather than #NA? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Embed your vlookup inside an if. Instead of =vlookup(...), use
=if(isna(vlookup(...)),0,vlookup(...)) "Rex" wrote: Trying to sum a column that was built using VLOOKUP. Several of the values returned in the column are #NA. The column will not sum. How can we write the VLOOKUP formula to return error values = to 0 rather than #NA? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You could change the Sum() formula:
=SUMIF(A1:A20,"<#N/A") -- HTH, RD ================================================== === Please keep all correspondence within the Group, so all may benefit! ================================================== === "Rex" wrote in message ... Trying to sum a column that was built using VLOOKUP. Several of the values returned in the column are #NA. The column will not sum. How can we write the VLOOKUP formula to return error values = to 0 rather than #NA? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Another way - adjust your VLOOKUP formulae to the following:
=IF(ISNA(VLOOKUP formula),0,VLOOKUP formula) and copy this down. Hope this helps. Pete |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
General soln is
=IF(ISNA(Your_Formula),0,Your_Formula) -- Regards Ken....................... Microsoft MVP - Excel Sys Spec - Win XP Pro / XL 97/00/02/03 ------------------------------*------------------------------*---------------- It's easier to beg forgiveness than ask permission :-) ------------------------------*------------------------------*---------------- "Rex" wrote in message ... Trying to sum a column that was built using VLOOKUP. Several of the values returned in the column are #NA. The column will not sum. How can we write the VLOOKUP formula to return error values = to 0 rather than #NA? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Convert decimal degree (lattitude/longitude) into Degree, | Excel Discussion (Misc queries) | |||
CONVERT Function Disappered in Excel | Excel Discussion (Misc queries) | |||
convert decimal number to time : convert 1,59 (minutes, dec) to m | Excel Discussion (Misc queries) | |||
Convert Numeric into Text | Excel Worksheet Functions | |||
Convert Time...!convert tenths of a second | Excel Discussion (Misc queries) |