CSC Function

Excel Functions › Math & Trig

Excel 2013+ Math & Trig

The Excel CSC function returns the cosecant of an angle — the reciprocal of the sine, 1/SIN. Excel measures angles in radians, so convert degrees with RADIANS first.


Quick answer:
=CSC(RADIANS(90)) cosecant of 90 degrees = 1

Syntax

=CSC(number)
ArgumentDescription
numberRequiredThe angle in radians whose cosecant you want. Convert degrees with RADIANS(deg) or deg*PI()/180.

How to use it

CSC is simply 1/SIN(number), introduced in Excel 2013 as a shorthand. Excel expects radians, so wrap any degree value in RADIANS():

=CSC(RADIANS(90)) // 90 deg = 1
=CSC(RADIANS(30)) // 30 deg = 2
=CSC(PI()/2) // pi/2 radians = 1

Because cosecant is the reciprocal of sine, =CSC(x) gives exactly the same result as =1/SIN(x) — handy if you're working in an older version without CSC.

Undefined where sine is zero. At 0° (and 180°) the sine is zero, so cosecant is undefined and =CSC(0) returns a #DIV/0! error. Use angles where sine is non-zero.

Try it: interactive demo

Live demo

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

Result:

Practice workbook

📊
Download the free CSC 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

What is the cosecant of an angle?
Cosecant is the reciprocal of sine: CSC(x) = 1/SIN(x). So if the sine of an angle is 0.5, its cosecant is 2.
Which Excel versions have CSC?
CSC was added in Excel 2013. In Excel 2010 and earlier, use =1/SIN(x) instead.
Why does CSC(0) return an error?
The sine of 0 is zero, and dividing by zero is undefined, so =CSC(0) returns #DIV/0!. Cosecant only works where sine is non-zero.
Does CSC take degrees or radians?
Radians, just like SIN. Convert degrees first with RADIANS(deg), for example =CSC(RADIANS(30)).

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: SIN · SEC · COT · COS · RADIANS · PI