| #VALUE! | The tails argument is not 1 or 2, or type argument is not 1, 2, or 3. For example, =T.TEST(A1:A5,B1:B5,3,2) uses tails=3, which is invalid. | Verify tails is 1 (one-tailed) or 2 (two-tailed), and type is 1 (paired), 2 (equal variance), or 3 (unequal variance). Correct the formula to =T.TEST(A1:A5,B1:B5,2,2). |
| #NUM! | Either array1 or array2 contains fewer than 2 numeric values. T.TEST cannot compute statistics from single-element samples. For example, =T.TEST({15},{12,14,11},2,2) has only one value in array1. | Ensure both arrays contain at least 2 data points. If doing paired tests (type=1), both arrays must be identical length. Add more measurements or verify your range references. |
| #N/A | One of the arrays contains non-numeric values (text, dates, or blanks) that cannot be coerced to numbers. For example, =T.TEST({15,"pending",16},{12,14,11},2,2) fails because "pending" is text. | Check both arrays for text values, empty cells, or improperly formatted dates. Remove blanks with IFERROR, or wrap ranges in IFERROR to skip non-numeric values: =T.TEST(IFERROR(A1:A5,""),B1:B5,2,2). |