A histogram is a visual representation of the distribution of numerical data. Grouping data into specific percentiles can give you a better overview of the big picture. You can create an Excel histogram in two ways:

  1. Using formulas
  2. Analysis ToolPak add-in

 

Excel Histogram using Formulas

The FREQUENCY formula calculates the values in a structure that is required for a histogram. It calculates how often values occur within a specified range. This formula requires bins values, and the first thing we need to do is calculating the bins.

  1. Determine number of intervals. This is optional, but more steps increase the precision level. Too many steps might make it harder to read the results. We choose 21 for our example.
  2. Calculate the minimum of values. =MIN($G$3:$G$1002)
  3. Calculate the maximum of values. =MAX($G$3:$G$1002)
  4. Calculate the difference between the minimum and maximum. =max-min
  5. Calculate the bin size. =diff/(interval_count-1)

How and Why of Running a Simulation in Excel

Since we know the start point (minimum value) and the bin size, we can create our bins.

  1. The first bin is the minimum value. =min
  2. Select the cell below and add the value above the bin size. =K8+binsize
  3. Copy down the cell for 20 intervals.

How and Why of Running a Simulation in Excel

You can use the bins values for a Data Analysis Histogram as well. Next is using the FREQUENCY formula.

  1. Start by selecting the empty range next to the bins. (L8:L28)
  2. Type in the FREQUENCY formula, using the simulation results and bins values as arguments. =FREQUENCY(results,bins)
  3. Press the Ctrl + Shift + Enter key combination (instead of pressing the Enter key) to enter the formula.

How and Why of Running a Simulation in Excel

This will create the histogram. You can see that the majority of scenarios are gathered around the middle area of the chart. This is where the most likely results lie. To see the results in an easier to read format, you can graph this data.

How and Why of Running a Simulation in Excel

 

Excel Histogram using Analysis ToolPak

The Analysis ToolPak add-in is a handy tool that is frequently used for data analysis. It is a ‘hidden’ add-in - it’s not active in Excel by default. You can activate it from the Add-ins dialog from FILE > Options > Add-Ins. Here, select Excel Add-ins in the Manage dropdown and click the Go button. Select the Analysis ToolPak and click OK.

How and Why of Running a Simulation in Excel

The tool can be found under the DATA tab after activation, with the name of Data Analysis. You will see the Histogram option in this dialog. Selecting it and clicking OK opens the Histogram window.

How and Why of Running a Simulation in Excel

In the Histogram dialog, Input range and Bin range should be selected. The Input range can be set to the results of the simulation. The Bin range is the numbers that specify the limits of each interval. You can use static numbers, or calculate them with formulas to make them dynamic. The Histogram dialog allows selecting a target location to create the chart.

How and Why of Running a Simulation in Excel

Unfortunately, the Histogram in Data Analysis is not dynamic, and you have to open the Histogram dialog every time when working with a new set of data.

How to create a histogram in Excel