T
Toby Erkson
I import a .csv file with two columns of numbers. The third column adds the
two columns together. At the very bottom I want to have a grand total for
each column. Here's a visual of what I want:
A B C
1 2 3
2 3 5
3 6 9
------------
6 11 17
Now, column C works fine as does it's grand total =SUM(C1:C3). What's NOT
working is the grand total for columns A and B!? Here's a visual of what
I'm getting:
A B C
1 2 3
2 3 5
3 6 9
------------
0 0 17
I'm using "=SUM(A1:A3)" (no quotes, of course) and I get a zero. Get this:
If I do the following I get the correct grand total:
"=A1 + A2 + A3"
The columns are formatted as NUMBER. Based on column C (=column A + column
B) Excel views them as NUMBERs. What is wrong with my SUM()?
TIA,
two columns together. At the very bottom I want to have a grand total for
each column. Here's a visual of what I want:
A B C
1 2 3
2 3 5
3 6 9
------------
6 11 17
Now, column C works fine as does it's grand total =SUM(C1:C3). What's NOT
working is the grand total for columns A and B!? Here's a visual of what
I'm getting:
A B C
1 2 3
2 3 5
3 6 9
------------
0 0 17
I'm using "=SUM(A1:A3)" (no quotes, of course) and I get a zero. Get this:
If I do the following I get the correct grand total:
"=A1 + A2 + A3"
The columns are formatted as NUMBER. Based on column C (=column A + column
B) Excel views them as NUMBERs. What is wrong with my SUM()?
TIA,