You could get an approximate value using interpolation: this imagines a
straight line drawn thru two points that encompass you x value
The slope of the line joining x=1 and x=2 is (8.5-5.5)/(2-1) = 3
So y =3x+c
The line goes thru the point (1, 5.5) so 5.5 = 3*1+c hence c = 2.5
For x=1.56; y=3*1.56 + 2.5 = 7.81
For a better approximation insert a trendline on the chart (use Help and
then return here with questions)
I fitted a second order polynomial (a quadratic) and got y =-0.5x^2 + 4.5x +
1/5 with a R2 value of 1 (a very good fit), I used LINEST (see
http://www.stfx.ca/people/bliengme/ExcelTips/Polynomial.htm)
to get these values into cells on the worksheet. When I use x=1.56 my
y-value is 7.3032
best wishes