![]() |
excel function to give the area of a circle?
I'm working my way through learning to build spreadsheets. How would I create
the function to give the area of a circle. I know the formula A=PI*r(squared) but don' know the excel functions. I tried "=(PI)*(Power('diameter cell'/2),2)" but that wouldn't work. |
Answer: excel function to give the area of a circle?
Calculating the area of a circle in Excel
To calculate the area of a circle in Excel, use the following formula: Code:
=PI()*(radius^2)
To use this formula in your spreadsheet, simply replace "radius" with the appropriate cell reference or value. For example, if your radius value is in cell A1, the formula would look like this: Code:
=PI()*(A1^2) |
excel function to give the area of a circle?
With the radius in A1:
=PI()*A1^2 Or, with the diameter in A1: =PI()*(A1/2)^2 -- Kind regards, Niek Otten Microsoft MVP - Excel "bhoward425" wrote in message ... I'm working my way through learning to build spreadsheets. How would I create the function to give the area of a circle. I know the formula A=PI*r(squared) but don' know the excel functions. I tried "=(PI)*(Power('diameter cell'/2),2)" but that wouldn't work. |
excel function to give the area of a circle?
On 1/27/2010 10:19 AM, bhoward425 wrote:
I'm working my way through learning to build spreadsheets. How would I create the function to give the area of a circle. I know the formula A=PI*r(squared) but don' know the excel functions. I tried "=(PI)*(Power('diameter cell'/2),2)" but that wouldn't work. see Excel help for PI. If radius is in cell A1, either of these formulas should work: =PI()*A1^2 =PI()*A1*A1 Bill |
using ranges to determine aggregate areas
I can get the areas of individual diameters, but I need to get the total for a range of diameters. If I have 10 different measurements of tree limbs, I need the total area of the 10 limbs. Right now, I have to calculate each one separately and then add them up.
=(3.14*(C2/2)^2)+(3.14*(D2/2)^2)+(3.14*(E2/2)^2)+(3.14*(F2/2)^2)+(3.14*(G2/2)^2)+(3.14*(H2/2)^2)+(3.14*(I2/2)^2)+(3.14*(J2/2)^2)+(3.14*(K2/2)^2)+(3.14*(L2/2)^2)+(3.14*(M2/2)^2) There otta be a better way ... and I broke me head trying to find it. Not a math whiz, but competent with simple formulas. This is a practical exercise for a horticulturalist who consults on trees all the time. |
All times are GMT +1. The time now is 06:36 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com