Family Encyclopedia >> Work

Beginner's Guide: How to Calculate Basic Statistics in Excel – Percentages, Averages, T-Tests & More

While Excel isn't as advanced as dedicated statistical software like SPSS or R, it's incredibly effective for basic calculations right out of the box. Add-ins can enhance it further—explore Power Up Excel with 10 Add-Ins to process, analyze, and visualize data like a pro.

You likely know basic arithmetic, but Excel also handles percentage changes, means, standard deviations, standard error, and even Student's t-tests with ease.

With built-in functions and simple formulas, Excel packs serious statistical power. As someone who's taught data analysis for years, I'll walk you through these essentials step by step. Let's dive in!

How to Calculate Percentages in Excel

Percentages are straightforward: divide two numbers and multiply by 100. For example, to find what percentage 347 is of 521, enter =347/521 and press Enter.

Beginner s Guide: How to Calculate Basic Statistics in Excel – Percentages, Averages, T-Tests & More

This yields a decimal like 0.67. Format as a percentage using Ctrl + Shift + 5 (a handy shortcut—see 60 Essential Microsoft Office Keyboard Shortcuts for more).

Alternatively, right-click the cell, select Format Cells > Percentage > OK.

Beginner s Guide: How to Calculate Basic Statistics in Excel – Percentages, Averages, T-Tests & More

Cell formatting handles the ×100 automatically—don't multiply manually first, or you'll double it.

Tip: Master dropdown lists with How to Create a Dropdown List in Excel.

How to Calculate Percentage Increase in Excel

For percentage increase from 129 to 246: First, subtract for the change (=246-129 = 117). Then divide by original (=117/129 ≈ 0.906).

Combine into one formula:

Beginner s Guide: How to Calculate Basic Statistics in Excel – Percentages, Averages, T-Tests & More

Format as percentage for ~91% increase. Quick check: 117 is nearly 129, so ~91% makes sense—a full 129 increase would be 100%.

How to Calculate the Mean (Average) in Excel

Excel's AVERAGE function shines here (one of 16 Excel Formulas to Solve Real-Life Problems). Click a cell, type =AVERAGE(, select your range (e.g., B4:B16), add ), and press Enter.

Beginner s Guide: How to Calculate Basic Statistics in Excel – Percentages, Averages, T-Tests & More

Done—your average appears instantly.

How to Perform a Student's T-Test in Excel

A t-test assesses if two samples differ significantly (p-value < 0.05 often indicates yes). For paired data—like pre/post-training weights—use a paired t-test.

Use T.TEST(array1, array2, tails, type):

  • array1/array2: Your data ranges.
  • tails: 1 (one-tailed) or 2 (two-tailed).
  • type: 1 (paired), 2 (equal variance), 3 (unequal variance/Welch).
=T.TEST(array1, array2, tails, type)

Example formula:

Beginner s Guide: How to Calculate Basic Statistics in Excel – Percentages, Averages, T-Tests & More

Press Enter for the p-value.

Beginner s Guide: How to Calculate Basic Statistics in Excel – Percentages, Averages, T-Tests & More

How to Calculate Standard Deviation in Excel

Use STDEV.S for sample data or STDEV.P for population (ignores text/logicals; use STDEVA/STDEVPA if needed).

Enter =STDEV.S(range) or similar, select cells, and go.

Beginner s Guide: How to Calculate Basic Statistics in Excel – Percentages, Averages, T-Tests & More

How to Calculate Standard Error in Excel

Standard error = standard deviation ÷ √n. Formula:

=STDEV.S(array1)/SQRT(COUNT(array1))

Use COUNTA for text/logicals.

Beginner s Guide: How to Calculate Basic Statistics in Excel – Percentages, Averages, T-Tests & More

Using Excel for Statistics: Solid for Basics

Excel handles stats well enough for everyday needs—percentages, averages, deviations, t-tests—without switching apps. For equations, try Goal Seek/Solver (How to Use Excel's Goal Seek and Solver).

Visualize with charts (How to Create Powerful Charts in Excel) and logic via IF statements (How to Use IF Statements in Excel).