Summing N/A's

D

Darin Kramer

Howdie...

Problem...
A1 =5
b1 = #N/A result of formulae
C1 = 3
D1 = 2
Etc etc.

I need to sum a1 to D1 to get 10
The N/A may be in any one of the cells...

If statement the soln...?

Thanks

D


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
K

K Dales

While the normal SUM() function will error out if there is an error value in
the range SUMIF does not, so you can do it like this:
=SUMIF(A1:D1,">0")+SUMIF(A1:D1,"<0")
 
T

Tom Ogilvy

That would be harder. Is there a pattern involved?

If it is blocks of cells but no pattern, you could always use the summation
sign (+) linking separate sumif formulas.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Finding the Value (of text and numbers) between N/A's 2
Data Form 1
Summing using column Heading 5
If... and... AGAIN!!! 3
Or...Yet again! 2
Top 3 numbers in a list 1
Scenario Analysis... simple 6
Sum IF 3

Top