You can keep #N/A's and use SUMIF for summing instead of SUM as in:
=SUMIF(A2:A10,"<>#N/A")
or extend your formula for VLOOKUP to return zero instead of #N/A (see a few recent posts on this issue).
=============
Billy, give this a try.
Say you started with
=VLOOKUP(A2,R2:S100,2)
Change it to
=IF(ISNA(VLOOKUP(A2,R2:S100,2)),"",VLOOKUP(A2,R2:S100,2))
Richard
Thanks
I found the ISerror previous message and is working very well
Great Service !!
Billy,
I used that also, but as Aladin pointed out to me, ISERROR catches all errors, not just N/A#, so you need to be a bit careful using it.
Richard Thanks I found the ISerror previous message and is working very well Great Service !!