Id write a UDF and reference it in the sheet, this displays a message if it can't find 15 numbers to average, you can adjust it take average of all the numbers it finds up to a max of 15, or something like that
Function Average15(rng As Range) 'take entire column as argument
ColumnNumber = rng.Column
rownumber = Cells(65536, ColumnNumber).End(xlUp).Row
If rownumber < 15 Then
Average15 = "Not Enough Cells"
Exit Function
End If
Counter = 0
While Counter < 15
If rownumber = 1 Then 'assumes no header row(s), change this to the first row with data in it
Average15 = "Not enough values"
Exit Function
End If
If Cells(rownumber, ColumnNumber).Value <> "" Then
Counter = Counter + 1
Totals = Totals + Cells(rownumber, ColumnNumber).Value
End If
rownumber = rownumber - 1
Wend
Average15 = Totals / 15
End Function
in the sheet the formula would be
=AVERAGE15(A:A)