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. |
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.
ATAN( Number )
Argument | Properties | Description |
---|---|---|
Number | The tangent of the angle you want. |
Returns the inverse hyperbolic tangent of a number.
To express the arctangent in degrees, multiply the result by 180/PI( ) or use the DEGREES function.
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:
2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy