If you can make this change, I'd suggest going with
Skip's earlier suggestion of using ISNA in the functions that are producing these unsightly returns.
Example:
Let's say you have
=VLookup(A1,B1:C10,2,0)
which is returning
#N/A because the value in A1 isn't found in the range B1:C10. Then change the formula to this:
=If(IsNA(VLlookup(A1,B1:C10,2,0)),"",VLookup(A1,B1:C10,2,0))
Now you can just sum an entire column
=Sum(D

)
If that would be entirely too much trouble, then you still needn't worry about hiding the rows containing
#N/A. Or hide them to improve the appearance of the sheet. It is really up to you.
The following formula will work either way:
[COLOR=red white]
=SumIf(D
,"<>#N/A")[/color]
[tt]_____
[blue]-John[/blue][/tt]
[tab][red]The plural of anecdote is not data[/red]
Help us help you. Please read FAQ181-2886 before posting.