R
RF
I have some columns that look like the following:
x 3 9
x 4 2
6 3
x 8 7
9 8
x 13 3
75 4
x 2 2
x 3 7
11 5
13 9
x 4 1
I put the following formula in cell D1:
=IF(c3="","",IF(c2="",SUMIF(a3:a100,"=x",c3:c100)))
This formula tells me the total of all cells in the C row that
correspond to an X in the A row--all the way down. So far so good.
Each group is separated by a space, because each group represents a
different day. I want to find the total of the data in the C column
that also has an X in the A column for each individual group.
I want to find the sum of the first group of three, that also has an
x, the the second group of two, third group of two-- all the way down.
In other words, how did my Xs do today? How did they do yesterday, et
al.
Thanks
x 3 9
x 4 2
6 3
x 8 7
9 8
x 13 3
75 4
x 2 2
x 3 7
11 5
13 9
x 4 1
I put the following formula in cell D1:
=IF(c3="","",IF(c2="",SUMIF(a3:a100,"=x",c3:c100)))
This formula tells me the total of all cells in the C row that
correspond to an X in the A row--all the way down. So far so good.
Each group is separated by a space, because each group represents a
different day. I want to find the total of the data in the C column
that also has an X in the A column for each individual group.
I want to find the sum of the first group of three, that also has an
x, the the second group of two, third group of two-- all the way down.
In other words, how did my Xs do today? How did they do yesterday, et
al.
Thanks