COT

Updated on

COT is a DAX function that returns the cotangent of an angle specified in radians.

Syntax

COT( Number )
Argument Properties Description
Number The angle in radians for which you want the cotangent.

Return Values

The cotangent of the given angle.

Remarks

  • The absolute value of number must be less than 2^27 and cannot be 0.

  • If number is outside its constraints, an error is returned.

  • If number is a non-numeric value, an error is returned.

Example

The following DAX query,

EVALUATE { COT(30) }

Returns

[Value]
-0.156119952161659

Other functions related to COT are:

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

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