COS Function (DAX)
How does the COS function (DAX) work?
The COS function (DAX) returns the cosine of the given angle.
COS Formula Syntax
COS(
number
)
How do you use the COS function?
The COS function is used to return a cosine value.
Related Blog Posts
Related Support Forum Posts
Understanding DAX Formula
Developing Complex Dax functions
Considerations when using the COS function
If the angle is in degrees, either multiply the angle by PI()/180 or use the RADIANS function to convert the angle to radians.
Related Video Tutorials
Formula examples using the COS function
=COS(1.047)
=COS(60*PI()/180)
=COS(RADIANS(60))