COSH

Updated on

COSH is a DAX function that returns the hyperbolic cosine of a number.

Syntax

COSH( Number )
Argument Properties Description
Number Any real number for which you want to find the hyperbolic cosine.

Return Values

The hyperbolic cosine of a number.

Remarks

  • The formula for the hyperbolic cosine is:

    COSH(z)=ez+ez2

  • This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.

Example

DAX expression Description Result
= COSH(4) Hyperbolic cosine of 4 27.308233
= COSH(EXP(1)) Hyperbolic cosine of the base of the natural logarithm. 7.6101251

Other functions related to COSH are:

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

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