Hi there,
I have three columns Time (t) Charge (Q) and Current (I).
The Time column contains second values 1,2,3 etc.
Q is defined as I * t.
Lets just say I is defined as Q * 2. The proper formula is too and would confuse things.
So for first time step I is given a value so Q can can be calculated. Then from Q, I can be calculated. Now for the next time step I want the new value for I to be used to calculate Q and then I again and so on
I was trying to use the formular1c1 function, but I can't use it because I is need to calculate Q but it is in the following column.
Any suggestions on how to do this just using the simple example above?
Thank you
I have three columns Time (t) Charge (Q) and Current (I).
The Time column contains second values 1,2,3 etc.
Q is defined as I * t.
Lets just say I is defined as Q * 2. The proper formula is too and would confuse things.
So for first time step I is given a value so Q can can be calculated. Then from Q, I can be calculated. Now for the next time step I want the new value for I to be used to calculate Q and then I again and so on
Code:
t Q I
1 1* 0.01(starting value for I) 0.01*2
2 This should be 0.02 *2 This should be 0.04*2
3 ..... ......
4 ..... ......
I was trying to use the formular1c1 function, but I can't use it because I is need to calculate Q but it is in the following column.
Any suggestions on how to do this just using the simple example above?
Thank you