DAX Function Guide

SIN
Empty image or helper icon

Sam McKay

CEO & Founder

How does the SIN work?
The SIN function (DAX) returns the sine of the given angle.
SIN Formula Syntax

SIN(
     number
)

How do you use the SIN?

The SIN function expects radians. To supply an angle to SIN in degrees, multiply the angle by PI()/180 or use the RADIANS function to convert to radians. 

Related Blog Posts

Loading

Considerations when using the SIN?

If your argument is in degrees, multiply it by PI()/180 or use the RADIANS function to convert it to radians.

Related Video Tutorials

Loading

Formula examples using the SIN

=SIN(30*PI()/180)

=SIN(RADIANS(30))

=SIN(PI()/2)

Related Courses

Loading