Hi!
I'm trying to create my own personal investment plan/calculator.
I need to create a function that will grab the value from the cell above it.
In programming, I'm trying to do this:
(not correct syntax, just showing for example).
Array problem [0][50] = new double array [] [];
problem[0][0] = 100.00 ;
for ( i=1; i < problem[0].length(); i++){
problem[0][i] = problem[0][i-1] + 50;
}
If that makes any sense.
In full english terminology:
I'm trying to take a previous months value and add to it. I want it as a function so I can just drag the cell properties down a list of 50 cells and have it apply correctly (adding a monthly value to each previously calculated month).
Thanks for your help (if this requires more specialized help, I'll try programmers sub forum as well, don't feel like you have to help/do advanced research).
I've done some moderate googling, but I'm a bit tired and may not be properly googling.
edit: I'm going to post con-currently in Programmers Haven as well per recommendation from another user.
If anyone has any advice/answers - I'd greatly appreciate it

Thanks again,
Austin
This post was edited by Textbook on Jun 3 2014 06:25pm