...kind of embarrassing...
Posted: Thu Jul 28, 2011 12:00 pm
i have been trying to do easy stuff, and could'nt figure out how for one hour now:
Series
t EQ1 EQ2 EQ3
1 3 4 1
2 5 1 2
3 2 7 3
4 1 4 2
5 6 6 2
6 3 1 1
I want to create a series EQ which is the sum over all EQs for each point of time:
t EQ
1 8 (from 3+4+1)
2 8 (from 5+1+2)
3 12 ....
4 7
5 14
6 5
how to do this automatically?
So far I ended up with something like that (which doesnt work):
for !i = 1 to 3
series eq = @sum (eq!i)
next
But this sums up over time, not over the EQ series...
in order to use @rsum i need to define a group, which I don't want to, as all the series EQ!i in the worksheet should be added up as demonstated...
Series
t EQ1 EQ2 EQ3
1 3 4 1
2 5 1 2
3 2 7 3
4 1 4 2
5 6 6 2
6 3 1 1
I want to create a series EQ which is the sum over all EQs for each point of time:
t EQ
1 8 (from 3+4+1)
2 8 (from 5+1+2)
3 12 ....
4 7
5 14
6 5
how to do this automatically?
So far I ended up with something like that (which doesnt work):
for !i = 1 to 3
series eq = @sum (eq!i)
next
But this sums up over time, not over the EQ series...
in order to use @rsum i need to define a group, which I don't want to, as all the series EQ!i in the worksheet should be added up as demonstated...