DAX Function Guide

T.INV
Empty image or helper icon

Sam McKay

CEO & Founder

How does the T.INV work?
The T.INV function (DAX) returns the left-tailed inverse of the Student’s t-distribution.
T.INV Formula Syntax

T.INV(
     Probability,Deg_freedom
)

How do you use the T.INV?

This function will calculate the left-tailed student’s t-distribution. The student’s t-distribution is a continuous probability distribution that is frequently used in testing hypotheses on small sample data sets.

Related Blog Posts

Loading

Considerations when using the T.INV?
  • If either argument is nonnumeric, T.INV returns the #VALUE! error value.
  • If probability <= 0 or if probability > 1, T.INV returns the #NUM! error value.
  • If deg_freedom is not an integer, it is truncated.
  • If deg_freedom < 1, T.INV returns the #NUM! error value.
Related Video Tutorials

Loading

Formula examples using the T.INV

EVALUATE { T.INV(0.75, 2) }

=T.INV(0.75,2)

=T.INV( 0.25, 10 )

Related Courses

Loading