How to Find T Test in Excel

There are two ways to “find t test in excel”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above with a tool to test it; below, we build the small mental model that makes the fix stick, so the next variation of the same problem solves itself.

Exact answer

In Excel: use =T.TEST(array1, array2, 2, 3) — it returns a p-value for the tails (1 or 2) and test type (1 paired, 2 equal variance, 3 unequal variance) you pass, and below 0.05 is the conventional threshold for calling a difference significant.

On this page8

Syntax

=T.TEST(array1, array2, tails, type)

Arguments

Argumentrequired / optionalDescription
array1requiredThe first sample.
array2requiredThe second sample.
tailsrequired1 for a one-tailed test, 2 for two-tailed.
typerequired1 paired, 2 two-sample equal variance, 3 two-sample unequal variance.

Related functions

Z.TESTF.TESTAVERAGE
ƒxStandard DeviationLive

n = 6 · mean = 14.67

Sample std. deviation (σ)
4.131

Variance = 17.067

=STDEV.S(A1:A6)
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

T.TEST compares two samples and returns the probability of seeing a difference this large if the two populations actually had the same mean. The type argument matters more than most people realise: 1 is for paired measurements (the same subjects before and after), 3 is for two independent groups whose variances may differ, and 3 is the safer default for independent samples because assuming equal variance rarely holds. A p-value below 0.05 conventionally means "unlikely to be chance", but it says nothing about how large or how important the difference is — a trivial difference becomes significant with a large enough sample. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “find t test in excel”. Start on a copy or a tiny sample, keep the affected cells visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a data step that keeps your analysis trustworthy, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

Comparing conversion times for two page designs, 200 sessions each in B2:B201 and C2:C201: =T.TEST(B2:B201, C2:C201, 2, 3) returning 0.03 says a difference this large would arise by chance about 3 % of the time. Before-and-after measurements on the same people use the paired form: =T.TEST(before, after, 2, 1). T.TEST is the standard A/B significance check, and its type argument is where most spreadsheet significance testing quietly goes wrong. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.

In Google Sheets

Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. Here is the takeaway for “find t test in excel”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.

Common mistakes

  • Using type 2 (equal variance) by default, when the variances usually differ and type 3 is the honest choice.
  • Choosing a one-tailed test after seeing the data, which halves the p-value without justification.
  • Reporting significance without the effect size; with 100,000 rows almost anything is significant.

Frequently asked questions

What does the p-value mean?

The probability of a difference this large arising by chance if the populations were identical. It is not the probability that your conclusion is correct.

Which type should I use?

1 for paired measurements on the same subjects; 3 for two independent groups. Type 2 assumes equal variance, which usually does not hold.

One or two tails?

Two, unless you committed to a direction before collecting data.