• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How to interpolate data in Excel?

I'm trying to write a formula to interpolate and I can't figure it out.

As a simple example, I have the following in Excel (each in its own cell of course):

64 2400
73 2500
77 2550

I want to be able to enter 75 in another cell, and come back with a result of 2525. Any tips?
 
If you're just doing linear interpolation, then type in the equation youself using the good old equation for a line:

y2 - y1 = Slope * (X2 - X1)

In this case you'd have:

Slope = (2550 - 2500)/(77 - 73) = 12.5

then
Y(New) - Y1 = SLope * (X(new) - X1)

Y(75) = 12.5 * (75 - 73) + 2500 = 2525

Just replace the hard-coded numbers with cell references.


 
Back
Top