calculate the average selling price over time

MartinL

Well-known Member
Joined
Oct 16, 2008
Messages
1,141
Office Version
  1. 365
Platform
  1. Windows
If I have a price at Year1 (10.00) and a price at Year10 (50)
How do I calculate the average price during all the interceding years
i.e.
Yr1 = 10
Yr2 = ?
Yr3 = ?
Yr4 = ?
Yr5 = ?
Yr6 = ?
Yr7 = ?
Yr8 = ?
Yr9 = ?
Yr10 = 50

I'm having a brain dead moment
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
if years are in range C1:C10, and 10 is in D1, and 50 is in d10, then place this into d2 and drag down to d9 ....

=D1+(D$10-D$1)/(ROWS($D$1:$D$10)-1)

Chris
 
Upvote 0
I got pretty much the same thing, but used COUNTA instead of ROWS...
=D1+($D$10-$D$1)/(COUNTA($C$1:$C$10)-1)
 
Upvote 0
if years are in range C1:C10, and 10 is in D1, and 50 is in d10, then place this into d2 and drag down to d9 ....

=D1+(D$10-D$1)/(ROWS($D$1:$D$10)-1)

Chris
Thanks for this, It worked just as I expected and showed me the flaw in my initial thinking..
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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