DAX Math & Trigonometric - SIN function



Description

Returns the sine of the given angle. DAX SIN function is new in Excel 2016.

Syntax

SIN (<number>) 

Parameters

Sr.No. Parameter & Description
1

number

The angle in radians for which you want the sine.

Return Value

The sine of the given angle.

Remarks

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

Example

= SIN (RADIANS (90)) returns 1. 
= SIN (RADIANS (0)) returns 0. 
dax_functions_mathematical_trigonometric.htm
Advertisements