DAX Function Guide
ACOS Function (DAX)
Sam McKay
CEO & Founder
How does the ACOS Function (DAX) work?
The ACOS function (DAX) works by returning a number’s arccosine or inverse cosine. The arccosine is the angle whose cosine is number. The angle of return is in radians that are in between the range of 0 to pi.
ACOS Function (DAX) Formula Syntax
ACOS(number)
How do you use the ACOS Function (DAX)?
If you want to change your result from radians to degrees, you can do so by multiplying it by 180/PI or by using the DEGREES function.
Related Blog Posts
Loading
Considerations when using the ACOS Function (DAX)?
By returning the inverse of the cosine function, this function will return the angle whose cosine is a given number.
Related Video Tutorials
Loading
Formula examples using the ACOS Function (DAX)
=DEGREES (
ACOS(0)
)
=ACOS(0.5)*(180/PI())
=ACOS (0.5)
Related Courses
Loading