Calculating average rate of change in real time

Geoff Halsall

New Member
Joined
May 21, 2014
Messages
31
I have a real time numerical value in cell A1.
5 seconds later this value updates into cell A2,
then in another 5 seconds it updates into cell A3.
This continues in this way up to say cell 200

How can I calculate the average rate of change
with respect to all the numerical values in column A
at any given time

Would really appreciate any help

Thanks
 
bbott, for percentage change, why not the simpler =(A2-A1)/A1, which is equivalent to =(A2/A1)-1. Or if you're concerned about cells moving around, =(A2/OFFSET(A2,-1,0))-1

It depends if you just want to see the current % change or retain all of the changes. Using (A2-A1)/A1, you would need to copy the formula down. If it's a real-time update every 5 seconds with an undetermined number of changes, that wouldn't be very efficient. My approach uses a single cell that updates with each change to show the current % change. User preference, I guess :).
 
Upvote 0

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.

Forum statistics

Threads
1,216,404
Messages
6,130,376
Members
449,578
Latest member
TT123

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top