I'm pretty sure that there is not built in function in Excel to do this. However if you do a search on the internet you might find add-ins or VB code for Excel that will do this for you. I don't know the math behind it so I wouldn't know where to begin to write the code.
Hi Rachel,
It is not difficult to write a VBA routine that would calculate the area under a chart's curve. It would have to be done numerically, rather than analytically, however. This means that Excel would have to use the trapezoidal or similar rule for numerically integrating under the series curve on the chart, basically approximating the function with straight line segments or simple curves. If you want Excel to give the EXACT answer for the area under a curve that Excel is calculating using a continuous analytic expression, you will be disappointed since Excel knows nothing of calculus or symbolic math.
Trapezoidal integration is simple--you can check it out in almost any calculus or numerical analysis book. To use it you will need to access the curve's point data, which is accessible via the Series' Point object of the chart.
I hope this helps.
Damon