
- DAX Functions Tutorial
- DAX Functions - Home
- DAX Functions - Introduction
- DAX Parameter Naming Conventions
- Description Structure
- DAX Functions - Aggregation
- DAX Functions - Filter
- DAX Functions - Time Intelligence
- DAX Functions - Date and Time
- DAX Functions - Information
- DAX Functions - Logical
- Math & Trigonometric Functions
- DAX Functions - Parent & Child
- DAX Functions - Statistical
- DAX Functions - Text
- DAX Functions - Other
- DAX Functions Useful Resources
- DAX Functions - Quick Guide
- DAX Functions - Useful Resources
- DAX Functions - Discussion
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