ATAN

Updated on

ATAN is a DAX function that returns the arctangent, or inverse tangent, of a number, providing the angle in radians between -p/2 and p/2.

Syntax

ATAN( Number )
Argument Properties Description
Number The tangent of the angle you want.

Return Values

Returns the inverse hyperbolic tangent of a number.

Remarks

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

Example

Formula Description Result
= ATAN(1) Arctangent of 1 in radians, pi/4 0.785398163
= ATAN(1)*180/PI() Arctangent of 1 in degrees 45

Other functions related to ATAN are:

Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/dax/atan-function-dax

2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy