How about something more sophisticated? Here's a cubic spline routine I've adapted to give you first (dy/dx) and
second derivatives d/dx (dy/dx)==dydx2
Data in Excel worksheet looks like this. Warning! Don't trust the derivatives near the end points (that is, first and last points in the Col A). To make a long story short, to do the cubic spline you have to more or less arbitrarily assign boundary conditions at the end points, there are at least 3 ways I know to 'guess' those boundary conditions, and these derivatives are very sensitive to those boundary conditions. (I tried this with y=x*x points, dy/dx and d2y/dx2 looked great away from the end points).
Col A Col B col D Col E col F Col G
row 1 ((blanks))
row 2: Actual Data Spline Interpol. dydx dydx2
row 3: x y x y
row 4: 0.00000 1.05361 0.00000
row 5: 0.0001 1.05355 0.01
row 6: 0.0107 1.04761 0.02
row ...
(in words...the data you know is in columns A and B, column C is blank, Column D contains the x values to interpolate to find the y values in Column E, columns F and G yield the dy/dx and the d2y/dx2)
Option Explicit
Option Base 1
Sub spline()
Dim xin() As Double, yin() As Double, cspline As Double, xinterp As Double
Dim yt() As Double, u() As Double, y As Double, dydx As Double, dydx2 As Double
Dim p, qn, sig, un, h, b, a As Double
Dim c As Long, Ctr As Long, FirstRow As Long, FinalRow As Long, irow As Long
Dim icol As Long
Dim n As Long, i As Long, k As Long 'these are loop counting integers
Dim klo, khi As Long
' First row for data is Row 4.
FirstRow = 4
' Find last row of data, helps you figure out how many data points to read.
FinalRow = Range("A65536").End(xlUp).Row
Ctr = FinalRow - FirstRow + 1
MsgBox ("No. pts: ") & Ctr
ReDim xin(Ctr)
ReDim yin(Ctr)
ReDim yt(Ctr)
' Columns A and B have the data you are fitting
For c = 1 To Ctr
xin(c) = Cells(c + FirstRow - 1, 1).Value
yin(c) = Cells(c + FirstRow - 1, 2).Value
Next c
' Find cubic spline coefficients, yt
cspline = cubic_spline(xin, yin, yt)
' Loop through all xinterp values
irow = FirstRow
icol = 4 'column for dumping interpolated data into
Do While ActiveSheet.Cells(irow, icol) <> ""
xinterp = Cells(irow, icol).Value
''''''''''''''''''''
'now eval spline at one point
'''''''''''''''''''''
' first find correct interval
klo = 1
khi = Ctr
Do
k = khi - klo
If xin(k) > xinterp Then
khi = k
Else
klo = k
End If
k = khi - klo
Loop While k > 1
h = xin(khi) - xin(klo)
a = (xin(khi) - xinterp) / h
b = (xinterp - xin(klo)) / h
y = a * yin(klo) + b * yin(khi) + ((a ^ 3 - a) * yt(klo) + _
(b ^ 3 - b) * yt(khi)) * (h ^ 2) / 6
dydx = (yin(khi) - yin(klo)) / h - ((3 * a ^ 3 - 1) / 6#) * h * yt(klo) + _
((3 * b ^ 3 - 1) / 6#) * h * yt(khi)
dydx2 = a * yt(klo) + b * yt(khi)
Cells(irow, icol + 1).Value = y
Cells(irow, icol + 2).Value = dydx
Cells(irow, icol + 3).Value = dydx2
irow = irow + 1
Loop
End Sub
Function cubic_spline(xin As Variant, yin As Variant, yt As Variant) As Double
' Given a data set consisting of a list of x and y values, this function
' smoothly interpolates resulting output

value from a given input (x)
' value using a cubic spline interpolation. This counts how many points are
' in "input" and "output" set of data
Dim u() As Double
Dim p, qn, sig, un As Double
Dim n As Long, i As Long, k As Long 'loop counting integers
Dim klo, khi As Long
'''''''''''''''''''''''''''''''''''''''
' population of values
'''''''''''''''''''''''''''''''''''''''
n = UBound(xin)
ReDim u(n - 1)
yt(1) = 0
u(1) = 0
For i = 2 To n - 1
sig = (xin(i) - xin(i - 1)) / (xin(i + 1) - xin(i - 1))
p = sig * yt(i - 1) + 2
yt(i) = (sig - 1) / p
u(i) = (yin(i + 1) - yin(i)) / (xin(i + 1) - xin(i)) - (yin(i) - yin(i - 1)) / (xin(i) - xin(i - 1))
u(i) = (6 * u(i) / (xin(i + 1) - xin(i - 1)) - sig * u(i - 1)) / p
Next i
qn = 0
un = 0
yt

= (un - qn * u(n - 1)) / (qn * yt(n - 1) + 1)
For k = n - 1 To 1 Step -1
yt(k) = yt(k) * yt(k + 1) + u(k)
Next k
End Function