DAX Math & Trigonometric - ASIN function



Description

Returns the arcsine, or inverse sine, of a number.

DAX ASIN function is new in Excel 2016.

Syntax

ASIN (<number>) 

Parameters

Sr.No. Parameter & Description
1

number

The sine of the angle you want and must be from -1 to 1.

Return Value

An angle given in radians in the range - pi/2 to pi/2.

Remarks

The arcsine is the angle whose sine is number.

To express the returned angle in degrees, multiply the result by 180/PI () or use the DAX DEGREES function.

Example

= DEGREES(ASIN(0)) returns 0. 
= DEGREES(ASIN(1)) returns 90. 
= DEGREES(ASIN(0.7)) returns 44.4270040008057. 
dax_functions_mathematical_trigonometric.htm
Advertisements