ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Sum formula result shows "#N/A" (https://www.excelbanter.com/excel-worksheet-functions/105874-sum-formula-result-shows-n.html)

Dinesh

Sum formula result shows "#N/A"
 
Col "A" Col "B"
8/18/06 Vlookup formula (result is $5)
8/21/06 Vlookup formula (cell not updated yet so result shows
#N/A)
Sum() (result shows #N/A)

Col "B" is linked to another worksheet. 8/21/06 row will get the result of
"#N/A" because the vlookup formula won't get updated until 8/21/06. So the
sum total also gives me the result of "#N/A". How can I get the sum total
result of ($5) on Col "B" row 3..

Thanks.

Dinesh

Trevor Shuttleworth

Sum formula result shows "#N/A"
 
Amend your VLOOKUP Formula to be:

=IF(ISNA(your VLOOKUP),0,your VLOOKUP)

So if the LOOKUP fails, you'll get 0 rather than #N/A! and your SUM should
work

Regards

Trevor


"Dinesh" wrote in message
...
Col "A" Col "B"
8/18/06 Vlookup formula (result is $5)
8/21/06 Vlookup formula (cell not updated yet so result
shows
#N/A)
Sum() (result shows #N/A)

Col "B" is linked to another worksheet. 8/21/06 row will get the result of
"#N/A" because the vlookup formula won't get updated until 8/21/06. So the
sum total also gives me the result of "#N/A". How can I get the sum total
result of ($5) on Col "B" row 3..

Thanks.

Dinesh




Dave F

Sum formula result shows "#N/A"
 
You have to configure your vlookup formula to return a null or empty value
instead of N/A.

Example: IF(ISERROR(VLOOKUP([your criteria])),"",VLOOKUP([your criteria]))

Right now since your vlookup returns an error, when you go to sum that
column ovf VLOOKUPS, SUM returns an error as well.
--
Brevity is the soul of wit.


"Dinesh" wrote:

Col "A" Col "B"
8/18/06 Vlookup formula (result is $5)
8/21/06 Vlookup formula (cell not updated yet so result shows
#N/A)
Sum() (result shows #N/A)

Col "B" is linked to another worksheet. 8/21/06 row will get the result of
"#N/A" because the vlookup formula won't get updated until 8/21/06. So the
sum total also gives me the result of "#N/A". How can I get the sum total
result of ($5) on Col "B" row 3..

Thanks.

Dinesh


Aladin Akyurek

Sum formula result shows "#N/A"
 
=SUM(SUMIF(B:B,{"<0","0"}))

Dinesh wrote:
Col "A" Col "B"
8/18/06 Vlookup formula (result is $5)
8/21/06 Vlookup formula (cell not updated yet so result shows
#N/A)
Sum() (result shows #N/A)

Col "B" is linked to another worksheet. 8/21/06 row will get the result of
"#N/A" because the vlookup formula won't get updated until 8/21/06. So the
sum total also gives me the result of "#N/A". How can I get the sum total
result of ($5) on Col "B" row 3..

Thanks.

Dinesh



All times are GMT +1. The time now is 11:31 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com