How to Create a Normal Distribution Bell Curve in Excel (2024)

This tutorial will demonstrate how to create a normal distribution bell curve in all versions of Excel: 2007, 2010, 2013, 2016, and 2019.

Bell Curve – Free Template Download

Download our free Bell Curve Template for Excel.

Download Now

In this Article

  • Bell Curve – Free Template Download
  • Getting Started
  • Step #1: Find the mean.
  • Step #2: Find the standard deviation.
  • Step #3: Set up the x-axis values for the curve.
  • Step #4: Compute the normal distribution values for every x-axis value.
  • Step #5: Create a scatter plot with smooth lines.
  • Step #6: Set up the label table.
  • Step #7: Insert the label data into the chart.
  • Step #8: Change the chart type of the label series.
  • Step #9: Modify the horizontal axis scale.
  • Step #10: Insert and position the custom data labels.
  • Step #11: Recolor the data markers (optional).
  • Step #12: Add vertical lines (optional).
  • Download Normal Distribution Bell Curve Template

In statistics, a bell curve (also known as a standard normal distribution or Gaussian curve) is a symmetrical graph that illustrates the tendency of data to cluster around a center value, or mean, in a given dataset.

The y-axis represents the relative probability of a given value occurring in the dataset while the x-axis plots the values themselves on the chart to create a bell-shaped curve, hence the name.

The graph helps us analyze whether a particular value is part of the expected variation or is statistically significant and, therefore, has to be examined more closely.

Since Excel doesn’t have any built-in solutions to offer, you will have to plot it yourself. That’s why we developed the Chart Creator Add-in, a tool that allows you to build advanced Excel charts in just a few clicks.

In this step-by-step tutorial, you will learn how to create a normal distribution bell curve in Excel from the ground up:

How to Create a Normal Distribution Bell Curve in Excel (1)

To plot a Gaussian curve, you need to know two things:

  • The mean (also known as the standard measurement). This determines the center of the curve—which, in turn, characterizes the position of the curve.
  • The standard deviation (SD) of the measurements. This defines the spread of your data in the normal distribution—or in plain English, how wide the curve should be. For instance, in the bell curve shown above, one standard deviation of the mean represents the range between exam scores of 53 and 85.

The lower the SD, the taller the curve and the less your data will be spread out, and vice versa.

It’s worth mentioning the 68-95-99.7 rule that can be applied to any normal distribution curve, meaning roughly 68% of your data is going to be placed within one SD away from the mean, 95% within two SD, and 99.7% within three SD.

How to Create a Normal Distribution Bell Curve in Excel (2)

Now that you know the essentials, let’s move from theory to practice.

Getting Started

For illustration purposes, let’s assume you have the test scores of 200 students and want to grade them “on a curve,” meaning the students’ grades will be based on their relative performance to the rest of the class:

How to Create a Normal Distribution Bell Curve in Excel (3)

Step #1: Find the mean.

Typically, you are given the mean and SD values from the start, but if that’s not the case, you can easily compute these values in just a few simple steps. Let’s tackle the mean first.

Since the mean indicates the average value of a sample or population of data, you can find your standard measurement using the AVERAGE function.

Type the following formula into any empty cell (F1 in this example) next to your actual data (columns A and B) to calculate the average of the exam scores in the dataset:

=AVERAGE(B2:B201)

How to Create a Normal Distribution Bell Curve in Excel (4)

A quick note: more often than not, you may need to round up the formula output. To do that, simply wrap it in the ROUND function as follows:

=ROUND(AVERAGE(B2:B201),0)

How to Create a Normal Distribution Bell Curve in Excel (5)

Step #2: Find the standard deviation.

One down, one to go. Fortunately, Excel has a special function to do all the dirty work of finding the standard deviation for you:

=STDEV.P(B2:B201)

Again, the formula picks all the values from the specified cell range (B2:B201) and computes its standard deviation—just don’t forget to round up the output as well.

=ROUND(STDEV.P(B2:B201),0)

How to Create a Normal Distribution Bell Curve in Excel (6)

Step #3: Set up the x-axis values for the curve.

Basically, the chart constitutes a massive number of intervals (think of them as steps) joined together with a line to create a smooth curve.

In our case, the x-axis values will be used to illustrate a particular exam score while the y-axis values will tell us the probability of a student getting that score on the exam.

Technically, you can include as many intervals as you want—you can effortlessly erase the redundant data later by modifying the horizontal axis scale. Just make sure you pick a range that will incorporate the three standard deviations.

Let’s start a count at one (as there is no way a student can get a negative exam score) and go all the way up to 150—it doesn’t really matter whether it’s 150 or 1500—to set up another helper table.

  1. Pick any empty cell below the chart data (such as E4) and type “1,” the value that defines the first interval.
  2. Navigate to the Home tab.
  3. In the Editing group, choose “Fill.
  4. Under “Series in,” select “Column.
  5. For “Step value,” type “1.” This value determines the increments that will be automatically added up until Excel reaches the last interval.
  6. For “Stop value,” type “150,” the value that stands for the last interval, and click “OK.

How to Create a Normal Distribution Bell Curve in Excel (7)

Miraculously, 149 cells in column E (E5:E153) have been filled with the values going from 2 to 150.

NOTE: Do not hide the original data cells as shown on the screenshots. Otherwise, the technique will not work.

Step #4: Compute the normal distribution values for every x-axis value.

Now, find the normal distribution values—the probability of a student getting a certain exam score represented by a particular x-axis value—for each of the intervals. Fortunately for you, Excel has the workhorse to do all these calculations for you: the NORM.DIST function.

Type the following formula into the cell to the right (F4) of your first interval (E4):

=NORM.DIST(E4,$F$1,$F$2,FALSE)

Here is the decoded version to help you adjust accordingly:

=NORM.DIST([the first interval],[the mean(absolute reference)],[the standard deviation(absolute reference),FALSE)

You lock the mean and SD values so that you can effortlessly execute the formula for the remaining intervals (E5:E153).

How to Create a Normal Distribution Bell Curve in Excel (8)

Now, double-click on the fill handle to copy the formula into the rest of the cells (F5:F153).

Step #5: Create a scatter plot with smooth lines.

Finally, the time to build the bell curve has come:

  1. Select any value in the helper table containing the x- and y-axis values (E4:F153).
  2. Go to the Insert tab.
  3. Click the “Insert Scatter (X, Y) or Bubble Chart” button.
  4. Choose “Scatter with Smooth Lines.”

How to Create a Normal Distribution Bell Curve in Excel (9)

Step #6: Set up the label table.

Technically, you have your bell curve. But it would be hard to read as it lacks any data describing it.

Let’s make the normal distribution more informative by adding the labels illustrating all the standard deviation values below and above the mean (you can also use them for showing the z-scores instead).

For that, set up yet another helper table as follows:

How to Create a Normal Distribution Bell Curve in Excel (10)

First, copy the Mean value (F1) next to the corresponding cell in column X-Value (I5).

How to Create a Normal Distribution Bell Curve in Excel (11)

Next, compute the standard deviation values below the mean by entering this simple formula into cell I4:

=I5-$F$2

Simply put, the formula subtracts the sum of the preceding standard deviation values from the mean. Now, drag the fill handle upward to copy the formula into the remaining two cells (I2:I3).

How to Create a Normal Distribution Bell Curve in Excel (12)

Repeat the same process for the standard deviations above the mean using the mirror formula:

=I5+$F$2

In the same way, execute the formula for the other two cells (I7:I8).

How to Create a Normal Distribution Bell Curve in Excel (13)

Finally, fill the y-axis label values (J2:J8) with zeros as you want the data markers placed on the horizontal axis.

How to Create a Normal Distribution Bell Curve in Excel (14)

Step #7: Insert the label data into the chart.

Now, add all the data you have prepared. Right-click on the chart plot and choose “Select Data.

How to Create a Normal Distribution Bell Curve in Excel (15)

In the dialog box that pops up, select “Add.

How to Create a Normal Distribution Bell Curve in Excel (16)

Highlight the respective cells ranges from the helper table—I2:I8 for “Series X values” and J2:J8 for “Series Y values”—and click “OK.

How to Create a Normal Distribution Bell Curve in Excel (17)

Step #8: Change the chart type of the label series.

Our next step is to change the chart type of the newly-added series to make the data markers appear as dots. To do that, right-click on the chart plot and select “Change Chart Type.

How to Create a Normal Distribution Bell Curve in Excel (18)

Next, design a combo chart:

  1. Navigate to the Combo tab.
  2. For Series “Series2,” change “Chart Type” to “Scatter.
    • Note: Make sure “Series1” remains as “Scatter with Smooth Lines.” Sometimes Excel will change it when you make a Combo Also make sure “Series1” is not pushed to the Secondary Axis—the check box next to the chart type should not be marked.
  3. Click “OK.”

How to Create a Normal Distribution Bell Curve in Excel (19)

Step #9: Modify the horizontal axis scale.

Center the chart on the bell curve by adjusting the horizontal axis scale. Right-click on the horizontal axis and pick “Format Axis” from the menu.

How to Create a Normal Distribution Bell Curve in Excel (20)

Once the task pane appears, do the following:

  • Go to the Axis Options tab.
  • Set the Minimum Bounds value to “15.”
  • Set the Maximum Bounds value to “125.”

You can tweak the axis scale range however you see fit, but since you know the standard deviation ranges, set the Bounds values a bit away from each of your third standard deviations to show the “tail” of the curve.

How to Create a Normal Distribution Bell Curve in Excel (21)

Step #10: Insert and position the custom data labels.

As you polish up your chart, be sure to add the custom data labels. First, right-click on any dot representing Series “Series2” and select “Add Data Labels.

How to Create a Normal Distribution Bell Curve in Excel (22)

Next, replace the default labels with the ones you previously set up and place them above the data markers.

  1. Right-click on any Series “Series2” data label.
  2. Select “Format Data Labels.
  3. In the task pane, switch to the Label Options tab.
  4. Check the “X Value” box.
  5. Uncheck the “Y Value” box.
  6. Under “Label Position,” choose “Above.”

How to Create a Normal Distribution Bell Curve in Excel (23)

Also, you can now remove the gridlines (right-click on them > Delete).

Step #11: Recolor the data markers (optional).

Finally, recolor the dots to help them fit into your chart style.

  1. Right-click on any Series “Series2” data label.
  2. Click the “Fill” button.
  3. Pick your color from the palette that appears.

How to Create a Normal Distribution Bell Curve in Excel (24)

Also, remove the borders around the dots:

  1. Right-click on the same data marker again and select “Outline.”
  2. Choose “No Outline.”

How to Create a Normal Distribution Bell Curve in Excel (25)

Step #12: Add vertical lines (optional).

As a final adjustment, you can add vertical lines to the chart to help emphasize the SD values.

  • Select the chart plot (that way, the lines will be inserted directly into the chart).
  • Go to the Insert tab.
  • Click the “Shapes” button.
  • Choose “Line.

Hold down the “SHIFT” key while dragging the mouse to draw perfectly vertical lines from each dot to where each line meets the bell curve.

How to Create a Normal Distribution Bell Curve in Excel (26)

Change the chart title, and your improved bell curve is ready—showing your valuable distribution data.

How to Create a Normal Distribution Bell Curve in Excel (27)

And that’s how you do it. You can now pick any dataset and create a normal distribution bell curve following these simple steps!

Download Normal Distribution Bell Curve Template

Download our free Normal Distribution Bell Curve Template for Excel.

Download Now

How to Create a Normal Distribution Bell Curve in Excel (2024)

FAQs

How do I create a normal distribution curve in Excel? ›

On the Insert menu, click Chart. Under Chart type, click XY (Scatter). Under Chart sub-type, in the middle row, click the chart on the right. Note: Just below these 5 sub-types, the description will say "Scatter with data points connected by smoothed lines without markers."

How do I generate normal distribution data in Excel? ›

How to calculate normal distribution in Excel
  1. Input your data set into an Excel spreadsheet. ...
  2. Find the mean of your data set. ...
  3. Find the standard deviation of your data set. ...
  4. Select a value for the distribution. ...
  5. Type the NORM. ...
  6. Save your Excel spreadsheet for later use.

Can Excel calculate normal distribution? ›

The NORM. DIST Function[1] is categorized under Excel Statistical functions. It will calculate the probability that variable x falls below or at a specified value. That is, it will calculate the normal probability density function or the cumulative normal distribution function for a given set of parameters.

How to make a standard curve in Excel? ›

Making a Standard Curve
  1. Enter the data into Excel in adjacent columns.
  2. Select the data values with your mouse. On the Insert tab, click on the Scatter icon and select Scatter with Straight Lines and Markers from its drop-down menu to generate the standard curve.
Jan 17, 2023

How do you make a normal distribution graph? ›

Sketch a picture of a normal distribution. Begin by drawing a horizontal line (axis). Next, draw a normal (bell-shaped) curve centered on the horizontal axis. Then draw a vertical line from the horizontal axis through the center of the curve, cutting it in half.

What is a good example of a normal distribution on a bell curve? ›

Example of a Bell Curve

Using the empirical rule, for example, if 100 test scores are collected and used in a normal probability distribution, 68% of those test scores should fall within one standard deviation above or below the mean.

How to do distribution in Excel? ›

How to make a frequency distribution table in Excel
  1. Insert a Pivot Table. ...
  2. Drag the fields to their respective areas. ...
  3. Navigate to the "Value and Field settings..." option. ...
  4. Choose "Count" and click "OK" ...
  5. Navigate to the "Group..." option. ...
  6. Enter values for the distribution and click "OK" ...
  7. Save your Excel spreadsheet.

How to plot a curve in Excel? ›

Select Insert to open a window of options and choose Charts to open the chart and graph options. Click on XY Scatter to generate a curved graph in Excel. A window of options will open to setup the final graph. Make sure you have mapped Column A to the X Axis and Column B to the Y Axis.

How to calculate normal distribution? ›

The standard normal distribution (z distribution) is a normal distribution with a mean of 0 and a standard deviation of 1. Any point (x) from a normal distribution can be converted to the standard normal distribution (z) with the formula z = (x-mean) / standard deviation.

How do you create a normal distribution log in Excel? ›

Excel Functions: Excel provides the following two functions: LOGNORM. DIST(x, μ, σ, cum) = the log-normal cumulative distribution function with mean μ and standard deviation σ at x if cum = TRUE and the probability density function of the log-normal distribution if cum = FALSE.

How to create a distribution in Excel? ›

How to make a frequency distribution table in Excel
  1. Insert a Pivot Table. ...
  2. Drag the fields to their respective areas. ...
  3. Navigate to the "Value and Field settings..." option. ...
  4. Choose "Count" and click "OK" ...
  5. Navigate to the "Group..." option. ...
  6. Enter values for the distribution and click "OK" ...
  7. Save your Excel spreadsheet.

Top Articles
Joel Osteen - You Lack Nothing » Watch Online Sermons 2024
Open Heaven 14 August 2024 – Prayer Extinguishers (1) » FLATIMES
Www.mytotalrewards/Rtx
Www.fresno.courts.ca.gov
Directions To Franklin Mills Mall
Terrorist Usually Avoid Tourist Locations
Pnct Terminal Camera
Ingles Weekly Ad Lilburn Ga
Robinhood Turbotax Discount 2023
San Diego Terminal 2 Parking Promo Code
Best Theia Builds (Talent | Skill Order | Pairing + Pets) In Call of Dragons - AllClash
Www Movieswood Com
A.e.a.o.n.m.s
Robot or human?
Simple Steamed Purple Sweet Potatoes
Gmail Psu
Otterbrook Goldens
Interactive Maps: States where guns are sold online most
Tamilyogi Proxy
Parentvue Clarkston
Self-Service ATMs: Accessibility, Limits, & Features
Sodium azide 1% in aqueous solution
Jeffers Funeral Home Obituaries Greeneville Tennessee
Governor Brown Signs Legislation Supporting California Legislative Women's Caucus Priorities
11 Ways to Sell a Car on Craigslist - wikiHow
TeamNet | Agilio Software
Hefkervelt Blog
The Fabelmans Showtimes Near Baton Rouge
Sony Wf-1000Xm4 Controls
FSA Award Package
Poe T4 Aisling
Kempsville Recreation Center Pool Schedule
James Ingram | Biography, Songs, Hits, & Cause of Death
Boneyard Barbers
Ixlggusd
Netherforged Lavaproof Boots
2012 Street Glide Blue Book Value
Umiami Sorority Rankings
Legit Ticket Sites - Seatgeek vs Stubhub [Fees, Customer Service, Security]
Check From Po Box 1111 Charlotte Nc 28201
San Bernardino Pick A Part Inventory
Actor and beloved baritone James Earl Jones dies at 93
Lamp Repair Kansas City Mo
Arnesons Webcam
Content Page
St Vrain Schoology
Tyco Forums
Nearest Wintrust Bank
Sinai Sdn 2023
Inside the Bestselling Medical Mystery 'Hidden Valley Road'
Philasd Zimbra
Latest Posts
Article information

Author: Errol Quitzon

Last Updated:

Views: 6023

Rating: 4.9 / 5 (79 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Errol Quitzon

Birthday: 1993-04-02

Address: 70604 Haley Lane, Port Weldonside, TN 99233-0942

Phone: +9665282866296

Job: Product Retail Agent

Hobby: Computer programming, Horseback riding, Hooping, Dance, Ice skating, Backpacking, Rafting

Introduction: My name is Errol Quitzon, I am a fair, cute, fancy, clean, attractive, sparkling, kind person who loves writing and wants to share my knowledge and understanding with you.