T.DIST function
Summary
Returns the Percentage Points (probability) for the Student t-distribution
Syntax
T.DIST(x,deg_freedom, cumulative)
The T.DIST function syntax has the following arguments:
• X Required. The numeric value at which to evaluate the distribution
• Deg_freedom Required. An integer indicating the number of degrees of freedom.
• Cumulative Required. A logical value that determines the form of the function. If cumulative is TRUE, T.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function.
• X Required. The numeric value at which to evaluate the distribution
• Deg_freedom Required. An integer indicating the number of degrees of freedom.
• Cumulative Required. A logical value that determines the form of the function. If cumulative is TRUE, T.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function.
Example
=T.DIST(60,1,TRUE)
=T.DIST(8,3,FALSE)
=T.DIST(8,3,FALSE)