Formula to Calculate Average increase

hblbs

Board Regular
Joined
Mar 18, 2009
Messages
184
Is there a formula to calculate the average daily increase/decrease in sales from the previous day? Like in the example below.

<TABLE borderColor=#05ad00 cellSpacing=1 cellPadding=2 width=233 border=1><TBODY><TR><TD width="13%" height=16>
Day​
</TD><TD width="29%" height=16>
Sales​
</TD><TD width="29%" height=16>
Increase​
</TD><TD width="29%" height=16>
Average​
</TD></TR><TR><TD width="13%" height=16>
1​
</TD><TD width="29%" height=16>
10​
</TD><TD width="29%" height=16>
</TD><TD width="29%" height=16>
22.5​
</TD></TR><TR><TD width="13%" height=16>
2​
</TD><TD width="29%" height=16>
20​
</TD><TD width="29%" height=16>
10​
</TD><TD width="29%" height=16>
</TD></TR><TR><TD width="13%" height=16>
3​
</TD><TD width="29%" height=16>
30​
</TD><TD width="29%" height=16>
10​
</TD><TD width="29%" height=16>
</TD></TR><TR><TD width="13%" height=16>
4​
</TD><TD width="29%" height=16>
80​
</TD><TD width="29%" height=16>
50​
</TD><TD width="29%" height=16>
</TD></TR><TR><TD width="13%" height=16>
5​
</TD><TD width="29%" height=16>
100​
</TD><TD width="29%" height=16>
20​
</TD><TD width="29%" height=16>
</TD></TR></TBODY></TABLE>
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Assuming the word "Day" is in cell A1, place this in D3:-
Code:
=SUM(C$2:C3)/(A3-A$2)
Then copy it down.

Is that what you're looking for?

(The first calculation would have to be on Day 2, no?)
 
Upvote 0

Forum statistics

Threads
1,224,582
Messages
6,179,670
Members
452,936
Latest member
anamikabhargaw

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