+ Reply to Thread
Results 1 to 3 of 3

How do I measure area under a line chart drawn in Excel file?

Hybrid View

  1. #1
    kp
    Guest

    How do I measure area under a line chart drawn in Excel file?

    Can anyone please let me know "How do I measure area under a line chart
    drawn in Excel file?"

  2. #2
    Bernard V Liengme
    Guest

    Re: How do I measure area under a line chart drawn in Excel file?

    See examples on my website using Trapezoid & Simpson's Rule.
    Bernard
    www.stfx.ca/people/bliengme/ExcelTips

    "kp" <kp@discussions.microsoft.com> wrote in message
    news:F3BF4B4B-6030-45E1-B17E-50005FD9FBAB@microsoft.com...
    > Can anyone please let me know "How do I measure area under a line chart
    > drawn in Excel file?"




  3. #3
    redbelly
    Guest

    Re: How do I measure area under a line chart drawn in Excel file?

    I'm not aware of such a feature in the various chart menus, but you can
    calculate the area directly from the data used for the chart curve.
    You don't even need to make a chart, except as an aid in visualizing
    the curve.

    Let's suppose you have the x values in cells A1:A100, and y values in
    B1:B100.
    Then, in column C, do the following:

    1. Put this formula in cell C1 (area contribution from the first data
    point):
    =B1*(A2-A1)/2

    2. Put this formula in cell C2 (area contrib. from 2nd data point):
    = B2*(A3-A1)/2

    3. Copy the formula in cell C2 to cells C3 through C99, i.e. up to the
    2nd-to-last data point.

    4. Put this formula in cell C100, or wherever the last data point's row
    is:
    =B100*(A100-A99)/2

    5. The area is the sum of all values in column C. So in cell D1, type
    = sum(C1:C100)

    This will work even if the x values are not evenly incremented. There
    are more accurate ways to do this, but this method is the simplest I
    know of.

    Mark


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1