Need to calculate circle or sphere measurements in Microsoft Excel? With Excel’s built-in PI() function, you can quickly work out values like circumference, area, arc length, surface area, and volume using simple formulas. Instead of typing the long value of π, Excel provides the PI() function accurate to 14 decimal places, making it easy to build precise formulas for everything from basic geometry to planetary-scale calculations.
Many formulas rely on Pi 𝜋 so Excel has a simple function Pi() which inserts Pi to 14 decimal places. That’s accurate enough for almost any purpose including calculating planetary motions and saves everyone typing 3.14159265358979 over and over again.

Circle formulas in Excel
Formulas to work out the Circumference, Area, Arc Length and Arc Area of a circle.
Copy any of these formulas into Excel, replace the names with cell references/names and you’re good to go!
| Circle | Excel Formula |
|---|---|
CIRCUMFERENCE from radius – πr2 | =PI()*Radius*2 |
| CIRCUMFERENCE from diameter | =PI()*Diameter |
| DIAMETER from circumference | =Circumference/PI() |
| RADIUS from circumference | =Radius/PI()*2 |
| AREA from radius | =PI()*Radius^2 |
| AREA from diameter | =PI()*(Diameter/2)^2 |
| AREA from circumference | =(Circumference/PI()/2)^2*PI() |
| ARC LENGTH from radius and angle in degrees | =2*PI()*Radius*(AngleDegrees/360) |
| ARC AREA from radius and angle in degrees | =(PI()*Radius^2)*(AngleDegrees/360) |
Sphere formulas in Excel
For a sphere or ball, here’s the Excel formulas for Surface Area and Volume.
| Sphere | Excel Formula |
|---|---|
| SURFACE AREA from diameter | =PI()*(Diameter^2) |
| SURFACE AREA from radius | =PI()*(Radius*2)^2 |
| VOLUME from diameter | =PI()*Diameter^3/6 |
| VOLUME from radius | =PI()*(Radius*2)^3/6 |
Earth, Moon and Sun calcs in Excel
Here’s the sphere formulas in practice for the surface area and volume of our planet and some near neighbors.

Pedantic Note: all the above assumes the Earth, Moon and Sun are completely spherical. The Earth and its moon are both oblate spheroids (they bulge at the equator due to axis spin). The Sun also has a slight bulge but it’s unexpectedly small.