cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
scott1588
Level III

Rolling Sum in Formula Editor

So I know that forms of this question have been asked before, but mostly the solutions has been JSL-based. One of my many failings in life is that I have not really learned JSL but instead rely on the formula editor (sorry). So I'm hoping there is a formula editor solution for this problem.

 

My goal is to get a formula that will generate a rolling sum. That is, I need a formula in one column that will generate a rolling sum of data in another column starting from the 8759th row before the current row all the way to the current row.

 

I have attached a copy of the formula I am trying to use but it does not seem to work. The attached table shows the problem. As soon as I get to a row containing zero, the cumulative sum is zero instead of 8759 (8759 ones plus one zero).

 

Can anyone help with this? Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Rolling Sum in Formula Editor

See if this will solve the issue for you

If( Row() == 1, sumx = 0 );
sumx = Sum( sumx, :Availability, -1 * :Availability[Row() - 8759] );
Jim

View solution in original post

4 REPLIES 4
scott1588
Level III

Re: Rolling Sum in Formula Editor

I probably should have thought about this a bit more before posting... I can just do a rolling average and multiply by the lag, in this case 8760. I would be curious though if there are other solutions.
txnelson
Super User

Re: Rolling Sum in Formula Editor

See if this will solve the issue for you

If( Row() == 1, sumx = 0 );
sumx = Sum( sumx, :Availability, -1 * :Availability[Row() - 8759] );
Jim
scott1588
Level III

Re: Rolling Sum in Formula Editor

@txnelson This is great! Thanks. Works like a champ. But, of course... I have a question... I'm not sure why it works.

 

The IF statement assigns 0 to Row 1, got that. If the row is anything other than one, it leaves the cell blank, right?

 

The SUM statement then takes the current value of sumx, adds the current Availability value and subtracts the Availability value from row - 8759 and assigns the result back to sumx. I've got that.

 

But my question is... why does the current value of sumx show up in the cell? There is nothing in the formula (apparent to me) that says... "Show sumx". Does the assignment "sumx = ..." automatically imply in JMP that the result will display in the cell?

 

Sorry if this is a dumb question. But its understanding these little things that sometimes really helps me progress in my understanding of how JMP works.

 

Thanks again for you help on this. 

txnelson
Super User

Re: Rolling Sum in Formula Editor

The last value processed in a formula is what is returned from the formula and placed into the cell.
Jim