How to Create a Bell Curve in Excel

“create a bell curve in excel” comes up constantly, so this page leads with the exact answer, gives you a tool to try it on your own numbers, and only then explains the detail. Everything works in Excel on Windows and Mac and maps almost one-to-one to Google Sheets. Copy the answer above and get back to work, or read on to turn a one-off fix into something you never have to look up again.

Exact answer

In Excel: compute the mean and standard deviation, build a column of x values across the range, get the height of the curve with =NORM.DIST(x, mean, sd, FALSE), then plot x against that column as a Scatter with Smooth Lines.

On this page7
ƒxZ-Score CalculatorLive

Mean = 70.714 · Std deviation = 5.992

Z-score
1.550
Percentile
93.9%
=(B2AVERAGE(A1:A7))/STDEV.S(A1:A7)
=NORM.DIST(x, AVERAGE($A$2:$A$200), STDEV.S($A$2:$A$200), FALSE)
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

A bell curve is the plot of the normal distribution defined by your data's mean and standard deviation. Excel has no "insert bell curve" button, so you build it: AVERAGE and STDEV.S give the two parameters, a column of evenly spaced x values spans roughly mean ± 3 standard deviations, and NORM.DIST with its last argument set to FALSE returns the probability density — the curve's height — at each x. Setting that argument to TRUE instead gives the cumulative S-curve. Plotting the result needs Scatter with Smooth Lines; a line chart treats the x values as categories and distorts the shape. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “create a bell curve 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 layout choice that keeps the sheet readable and sortable, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

200 test scores in A2:A201. D1 = =AVERAGE(A2:A201) → 72.4, D2 = =STDEV.S(A2:A201) → 11.8. In F2 put =$D$1-3*$D$2 and in F3 =F2+($D$2*6/60), filled down to F62 — 61 points spanning ±3σ. In G2: =NORM.DIST(F2, $D$1, $D$2, FALSE), filled down. Select F2:G62 and Insert ▸ Scatter ▸ Scatter with Smooth Lines. The peak sits at 72.4 and the curve is near zero by 37 and 108. A bell curve is how a set of measurements gets turned into a statement about how likely a value is — grading, quality limits and process control all start with the mean, the standard deviation and this shape. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

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. If you take one thing from this page on “create a bell curve in excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.

Common mistakes

  • Using a Line chart instead of a Scatter chart, which spaces the x values evenly by position and misshapes the curve.
  • Passing TRUE as the fourth NORM.DIST argument, which draws the cumulative distribution rather than the bell.
  • Using STDEV.P on a sample; STDEV.S is the right choice unless the data really is the whole population.
  • Plotting a bell curve over data that is visibly skewed or bimodal, which asserts a normality the data does not have.
  • Leaving the x values unsorted, which makes the smooth line double back on itself.

Frequently asked questions

How do I make a bell curve in Excel?

Compute the mean and standard deviation, build a column of x values across mean ± 3 standard deviations, calculate =NORM.DIST(x, mean, sd, FALSE) beside it, and plot the two columns as a Scatter with Smooth Lines.

What does the FALSE argument do in NORM.DIST?

It asks for the probability density — the height of the bell at that x. TRUE returns the cumulative probability instead, which draws an S-shaped curve.

How do I overlay my actual data?

Add a histogram of the raw values as a second series and put it on a secondary axis. Counts and probability densities are not on the same scale, so one axis would flatten the curve.

How wide should the x range be?

Mean ± 3 standard deviations covers about 99.7% of a normal distribution, which is enough for the curve to reach the baseline at both ends.

Other ways people ask this

This is also commonly searched as “how to make a bell curve in excel”, “how do i make a bell curve in excel”, “how to create bell curve in excel” and “how to make bell curve in excel”. They describe the identical operation, so you are in the right place no matter how you phrased it.

Why do people search for this in so many different ways?

Because the same task has many names. “how to make a bell curve in excel”, “how do i make a bell curve in excel”, “how to create bell curve in excel” all point at the one operation explained on this page, which is why they all lead here.