Explore the T.TEST function - one of the statistical powerhouses in Excel.

Description: Returns combined probability with Student's t-test. Supported from Excel 2010 onwards.
Syntax: T.TEST(array1,array2,tails,type)
In this context:
- array1: The first dataset, a mandatory parameter.
- array2: The second dataset, a mandatory parameter.
- tails: Determines the distribution value, a mandatory parameter including:
+ tails = 1 -> use one-sided distribution.
+ tails = 1 -> employ two-sided distribution.
- type: Type of t-test to be performed, a mandatory parameter including:
+ type = 1 -> conduct pairwise t-test.
+ type = 2 -> perform the test with 2 samples having the same variance.
+ type = 3 -> conduct the test with 2 samples having different variances.
Note:
- If two arrays have different data points and type = 1-> the function returns an error value #N/A.
- Non-integer parameter values -> rounded to the nearest integer.
- If tails is not a number -> function returns an error value #VALUE!
- If tails is out of its range -> function returns an error value #NUM!
Example:
Calculate the probability associated with the t Student test as described in the data table below:

- Calculate the probability associated with the pairwise t Student test with two-sided distribution. In the cell for calculation, enter the formula : =T.TEST(C6:C10,D6:D10,2,1)

- Press Enter -> the probability associated with the pairwise t Student test with two-sided distribution is:

- Calculate the probability associated with the t Student test for two samples with the same variance and one-sided distribution. In the cell for calculation, enter the formula : =T.TEST(C6:C10,D6:D10,1,2)

- Press Enter -> the probability associated with the t Student test for two samples with the same variance and one-sided distribution is:

Here is a guide and some specific examples of using the T.TEST function in Excel.
Wishing you success!
