Cannot figure out how to interpolate revenue values with Excel

hackman2007

New Member
Joined
Nov 7, 2008
Messages
7
Hey everyone, I have a question on data interpolation with Excel 2007. Normally, this wouldn't be too much of an issue for me, but for some reason I cannot figure it out.

I'm working on an Income Statement, which is designed for 5 years. I have values 1 and 5, which are given to me (B7: 3,500,000 and F7: 5,200,000). I'm trying to figure out the other 3 years of revenue assuming a growth trend. The values should fill the series B7:F7.

Can anyone help me out on this?

Thanks.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Is the interpolation straight line ?

In which case, isn't it
Code:
=$b7+(($f7-$b7)/4)

Or maybe it isn't linear, but then I think you need to give us more information.
 
Upvote 0
Yes, the interpolation is straight line.

However, when I run that formula into my spreadsheet, it doesn't return the correct value. The correct value in C7 would be $3,864,131. The formula returns $3,925,000.
 
Upvote 0
Sorry, my formula should have been
Code:
=B7+(($F7-$B7)/4)
which in this case gives a standard increment of 425,000, which is what I meant by straight line.

But I think you mean, a standard percentage increase each year, yes ?
 
Upvote 0
try graphing the points and then right click on the data points, go to "Add Trendline"
 
Last edited:
Upvote 0
Upvote 0
I looked at your spreadsheet and by looking at the expenses, they are approximately following logarithmic trend. So I am assuming the revenues will too in opposite direction.
Try the following formula in cell C7:

=INTERCEPT({3500000,5200000},LN({1;5}))+SLOPE({3500000,5200000},LN({1;5}))*LN(VALUE(RIGHT(C6,1)))

and drag it through E7.

Does it seem okay?
 
Upvote 0
I'm really starting to hate this spreadsheet :LOL:

Anyways, the formula did not work. It still makes the value of Revenue in Year 2 go too high. Looking at the correct values, it should be the following:

Year 1: $3,500,000
Year 2: $3,864,131
Year 3: $4,266,146
Year 4: $4,709,985
Year 5: $5,200,000

If you haven't guessed by now, this is a challenge problem for an Excel class.

Would using the Trend or Forecast functions work?
 
Upvote 0

Forum statistics

Threads
1,215,048
Messages
6,122,862
Members
449,097
Latest member
dbomb1414

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