M
MAC Man
My Question is how to run a total on the next column from values from
preceeding Column EX:
Column A Column B
1 1
2 3
3 6
4 10
5 15
preceeding Column EX:
Column A Column B
1 1
2 3
3 6
4 10
5 15
Ron Coderre said:How about one of these?:
This one calcs the total if anything is in the Col_A cell, including text.
B1: =IF(A1<>"",SUM($A$1:A1),"")
OR
This one only calcs the total if the Col_A cell contains a number
B1: =IF(ISNUMBER(A1),SUM($A$1:A1),"")
Does that help?
***********
Regards,
Ron
XL2002, WinXP