Excel 2003 - SUM formula

C

Chow

I have (A1*B1) value in column cell C1=500 and (A2*B2) value in column cell
C2=300. How can i sum C1 and C5 to get value is 800? what formula i should
use?
 
C

Chow

=C1 + C2 it worked fine for me, but when i sum =C1 : C100 it didn't work
because i have 100 rows and they all have value formula.
 
S

Sheeloo

=SUM(C1:C100)

Chow said:
=C1 + C2 it worked fine for me, but when i sum =C1 : C100 it didn't work
because i have 100 rows and they all have value formula.
 
M

Max

Try something like this which will ignore possible errors or text within the
sum range C1:C100. Array-enter, ie confirm the formula by pressing
CTRL+SHIFT+ENTER (instead of just ENTER):
=SUM(IF(ISNUMBER(C1:C100),C1:C100))

Celebrate success? Click the YES button below.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:25,000 Files:300 Subscribers:70
xdemechanik
 
C

Chow

Max- Thank you so much. It worked great.

Chow

Max said:
Try something like this which will ignore possible errors or text within the
sum range C1:C100. Array-enter, ie confirm the formula by pressing
CTRL+SHIFT+ENTER (instead of just ENTER):
=SUM(IF(ISNUMBER(C1:C100),C1:C100))

Celebrate success? Click the YES button below.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:25,000 Files:300 Subscribers:70
xdemechanik
 
Top