Page 1 of 1

Calculation applied to all series in a group

Posted: Thu Mar 20, 2014 1:25 pm
by jthodge
Is there a simple way to perform a simple arithmetic operation on all series in a group? For example, divide all series by 1000?

Re: Calculation applied to all series in a group

Posted: Thu Mar 20, 2014 1:26 pm
by EViews Gareth
Only with a for loop in a program.

Re: Calculation applied to all series in a group

Posted: Thu Mar 20, 2014 1:31 pm
by jthodge
OK. That's what I normally use. For example:

Code: Select all

for !i = 1 to group01.@count %var = group01.@seriesname(!i) genr {%var} = {%var} / 1000 next
I thought there might be a simpler way.