PI Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel PI function returns the constant π to 15 digits (3.14159265358979) — takes no arguments and is the building block for circle math, radian conversions, and trigonometry.


Quick answer:
=PI() = 3.14159265358979

Syntax

=PI()
ArgumentDescription
(none)OptionalPI takes no arguments, but the empty parentheses are required: write PI(), not PI.

How to use it

PI returns π accurate to 15 significant digits. The parentheses are mandatory even though there is no argument:

=PI() // = 3.14159265358979
=PI()*5^2 // area of r=5 circle = 78.54
=2*PI()*5 // circumference r=5 = 31.416

PI underpins the angle conversions too: RADIANS(d) is d*PI()/180 and DEGREES(r) is r*180/PI().

Forgot the parentheses? Typing =PI alone returns a #NAME? error because Excel reads it as an undefined name. Always include the empty ().

Try it: interactive demo

Live demo

Pick a PI example to see the formula and its result.

Result:

Practice workbook

📊
Download the free PI practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

How accurate is Excel's PI function?
PI returns π to 15 significant digits: 3.14159265358979. That is the full precision Excel stores for any number.
Why does PI need empty parentheses?
PI is a function, not a named constant. The () tells Excel to call it. Writing =PI alone returns a #NAME? error.
How do I find the area of a circle with PI?
Use =PI()*r^2. For a radius of 5, =PI()*5^2 returns about 78.54.
Can I get more digits of pi than PI provides?
No. Excel works to about 15 significant digits, so PI already returns the maximum precision available. Extra digits cannot be stored.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: RADIANS · DEGREES · SIN · COS · POWER · SQRT