DAX Statistical - CHISQ.DIST.RT function



Description

Returns the right-tailed probability of the chi-squared distribution. DAX CHISQ.DIST.RT function is new in Excel 2016.

Syntax

CHISQ.DIST.RT (x,deg_freedom)

Parameters

Sr.No. Term & Definition
1

x

The value at which you want to evaluate the distribution.

2

deg_freedom

The number of degrees of freedom.

Return Value

The right-tailed probability of the chi-squared distribution.

Remarks

  • If deg_freedom is not an integer, it is rounded to the nearest integer.

  • If either of the parameters is nonnumeric, CHISQ.DIST.RT returns an error value.

  • If either of the parameters is <0, CHISQ.DIST.RT returns an error value.

Example

= CHISQ.DIST.RT (18.307,10) returns 0.0500005890913981.
dax_functions_statistical.htm
Advertisements