Based on that, you can plot the answer. I put a Quiet[] in there because sometimes the solution has issues but you can get the idea by doing something like this:
Manipulate[
ListLinePlot[
Quiet[ans =
Table[x /.
FindRoot[
a^2*Exp[x/a] + x^2/2*(1 - b) - a^2 - a*x*Exp[x/a] ==
0, {x, -1, -100, -0.001}], {b, 0.01, 0.9, 0.01}]]], {{a, 0.3},
0.1, 1}]
Giving a plot that looks like this for any value of a (only the y axis seems to change with a). This suggests you can easily do an excellent interpolation or an approximate curve fit.
