Every business generates numbers that pile up fast: daily sales figures, customer transaction values, employee ages, survey ratings. A raw list of fifty or a hundred numbers tells you almost nothing on its own. A frequency distribution table fixes that by grouping the data and showing how often values fall into each group. In Excel, the fastest way to build one is the FREQUENCY function, an array formula that does in one step what would otherwise take several COUNTIF formulas. This post walks through what a frequency distribution is, how the FREQUENCY function works, and how to build a working table from scratch.

Table of Contents

What a frequency distribution table actually shows

A frequency distribution organizes a dataset into intervals, usually called bins or class intervals, and counts how many data points fall into each one. Instead of scrolling through a long column of numbers, you get a short table that reveals the shape of the data at a glance. It is one of the most basic tools in statistics, and it’s what most calculations after it are built on, including the mean, median, and measures of variance.

The idea works the same way whether the data is exam marks, ages, or sales figures. You decide on sensible ranges, count how many values land in each range, and lay it out in a table. In a business context, this turns a spreadsheet of raw numbers into something a manager can actually act on. Grouping data into a frequency table is usually the very first step before any deeper statistical analysis, such as building a histogram or checking for outliers.

Why array formulas make this possible

A regular Excel formula returns one value in one cell. An array formula can return multiple values at once, spread across a range of cells. FREQUENCY is built exactly for this. Its syntax is straightforward: =FREQUENCY(data_array, bins_array), where data_array is the range containing your raw numbers and bins_array is the range containing the upper limits of each group. Because it counts across the entire dataset in one shot, it’s faster and less error-prone than writing a separate COUNTIF for every single bin, especially once you have more than four or five groups. According to Microsoft’s own documentation, FREQUENCY ignores blank cells and text entirely and only works with numeric values.

Entering the formula: two different methods

How you confirm the formula depends on your Excel version. In older versions, you first select the entire output range, type the formula into the top-left cell, and press Ctrl+Shift+Enter instead of just Enter. Excel wraps the formula in curly braces to show it’s an array formula. In Microsoft 365, this extra step isn’t needed. You can type the formula into a single cell and press Enter, and the results automatically spill into the cells below it without needing curly braces at all.

Setting up your data before applying FREQUENCY

Arranging the data array

Before you touch the formula, get your raw data into shape. Place every value in a single column with no blank rows in between. FREQUENCY only counts numbers, so if your column has stray text or empty cells mixed in, those get skipped rather than counted. This matters when you’re pulling data from a larger sheet where some rows might be incomplete.

Defining the bins array

The bins_array is a short list of numbers that mark the upper boundary of each group. If you want groups of โ‰ค30, 31-40, 41-50, 51-60, and above 60, your bins_array only needs to contain four numbers: 30, 40, 50, and 60. Excel automatically works out where each value falls based on these boundaries, and it always adds one extra result for anything above the last bin. This is a common source of confusion for first-time users, since the bins only define upper limits, not full ranges, and the function figures out the “greater than the previous bin, less than or equal to the current bin” logic on its own.

Step-by-step: building a working example

Suppose you’re reviewing the monthly revenue (in โ‚น thousands) generated by 15 sales executives at a retail chain: 42, 55, 38, 61, 47, 29, 58, 63, 51, 34, 45, 39, 57, 62, and 48. You want to see how many executives fall into each revenue bracket.

First, list the data in cells B2:B16. Then set up the bins in D2:D5 as 30, 40, 50, and 60. Select the output range E2:E6, which is one cell more than the number of bins, and enter:

=FREQUENCY(B2:B16, D2:D5)

In older Excel versions, confirm with Ctrl+Shift+Enter. In Excel 365, just press Enter in cell E2 and let it spill downward. The result looks like this:

Revenue bracket (โ‚น thousand) Bins array value Frequency
Up to 30 30 1
31-40 40 3
41-50 50 4
51-60 60 4
Above 60 (none needed) 3

Add up the frequency column and it matches the total number of executives: fifteen. That’s a quick way to double-check the formula was entered correctly.

Reading the output: the overflow bin

Notice the table has five results even though there are only four bin values. This is by design. The FREQUENCY function always returns one more result than the number of items in bins_array, and that last extra number is the count of everything above the highest bin. If you forget to select that extra cell before entering the formula, Excel simply won’t show that overflow count, and your totals won’t add up to the full dataset. This is one of the most common mistakes people make the first time they use this function.

Going further: relative and cumulative frequency

A raw count is useful, but percentages often communicate more clearly, especially in a report meant for people outside the finance or analytics team. Relative frequency converts each count into a percentage of the total by dividing each frequency by the overall count of data points. Cumulative frequency goes a step further, adding up the running total as you move down the table, which is handy for answering questions like “what share of executives generated โ‚น50,000 or less.” Both columns build directly on the output of the FREQUENCY formula and don’t need any additional array logic. Statistical teaching material generally treats relative frequency as a natural extension of the basic frequency table, since it makes comparisons across datasets of different sizes much easier.

Common mistakes to watch for

A few errors come up repeatedly, especially with legacy versions of Excel.

Not selecting enough output cells: Since FREQUENCY returns one more value than the number of bins, selecting too few cells cuts off the overflow count.

Forgetting Ctrl+Shift+Enter: On non-365 versions, pressing just Enter returns a single, often incorrect, number instead of the full array.

Unsorted or duplicate bins: The bins_array needs to be in ascending order for the groupings to make logical sense.

Mixed data types in the data array: Text or blanks inside the data range get silently ignored, which can make your total count look lower than expected if you’re not careful.

Where this skill fits in a business career

Frequency distribution isn’t just a classroom exercise. Retail businesses use it to study how transaction values are spread across customers, HR teams use it to understand employee age or salary bands, and market researchers use it to summarize survey responses. It’s also the foundation for a histogram, which is often the first chart analysts reach for when presenting data patterns to a non-technical audience. Understanding how to build a frequency distribution directly in a spreadsheet, rather than depending on specialized statistical software, is a practical skill that shows up early in most data-related roles.

What do you think? If you had last month’s sales data for your own class project or a part-time job, what bin sizes would actually be useful to you? And where else in a typical business report do you think a frequency table would explain something faster than a paragraph of text?

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

References
  1. https://www.cuemath.com/data/frequency-distribution-table/
  2. https://www.geeksforgeeks.org/maths/frequency-distribution-table/
  3. https://support.microsoft.com/en-us/office/frequency-function-44e3be2b-eca0-42cd-a3f7-fd9ea898fdb9
  4. https://exceljet.net/functions/frequency-function
  5. https://www.goskills.com/Excel/Resources/FREQUENCY-Excel
  6. https://www.geeksforgeeks.org/maths/frequency-distribution/
  7. https://www.datacamp.com/tutorial/frequency-distribution-excel

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

Computer Application in Business

1 Introduction to Computer

  1. Overview of Computers
  2. Evolution of Computers
  3. Classification of Computers
  4. Components of a Computer System
  5. Applications of Computers
  6. Advantages and Disadvantages of Computers

2 Application of Computers

  1. Role of Computers in Business Organisation
  2. Computers for Society
  3. Role of Computers in Business, Trade, and Commerce
  4. Computer Role in Online Business
  5. Computer Role in Online Banking and Finance
  6. Importance of Computer Networks

3 Web Applications

  1. Web Browser
  2. Google Drive
  3. What is Google Docs?
  4. File Storage and Synchronization Service
  5. Setting Up of a Google Account
  6. Navigating Google Docs
  7. Creating New Google Docs Projects
  8. Google Sheets
  9. Google Slides
  10. Google Suite
  11. Sharing, Publishing and Collaborating
  12. Google Forms
  13. Cloud Based System

4 Basics of Computer Software

  1. Software and its Types
  2. Windows Operating System
  3. Android Operating System for Mobile
  4. Free and Open Software
  5. Google Play Store
  6. Google Chrome
  7. App Based Software

5 Business Information System

  1. Data and Information
  2. Introduction to Business Information System
  3. Database Management System (DBMS)
  4. Relational Data Base Management System (RDBMS)
  5. Decision Support System (DSS)
  6. Enterprise Resource Planning (ERP)
  7. Management Information System (MIS)
  8. The General Data Protection Regulation (GDPR)

6 IT Security Measures in Business

  1. Why Systems Are Not Secure?
  2. Cyber Security
  3. Identity Theft
  4. Key Security Principles
  5. Six Essential Security Actions
  6. Applying Principles to Information Security Policy
  7. Security Self-Assessment
  8. Digitization
  9. CAPTCHA Code
  10. One Time Password (OTP)

7 Internet Services and E-mail Configuration

  1. About the Internet
  2. Types of Internet Services
  3. About E-mail and its Configuration
  4. Web Browsers
  5. World Wide Web (WWW)
  6. Uniform Resource Locator (URL)
  7. Domain Names

8 Plastic Money, E-Wallet and Online Pay

  1. Origin of Plastic Money
  2. Usage of Plastic Money
  3. E-Wallet
  4. Development of E-Wallet System
  5. E-Payment System in Commerce
  6. Mobile Wallets, Payment & Card Network
  7. Consumer Adoption in Mobile Wallet
  8. Effects of Demonetization on Digital Payment
  9. Success Story of Wallets

9 Basics of Word Processing

  1. Word Processing
  2. Salient Features of MS-Word
  3. Letโ€™s Start MS-Word
  4. Main Menu Options (Tabs in MS Word)
  5. Creating Documents by MS Word

10 Working with Word Processing

  1. File Management in MS Word
  2. Entering and Editing Text
  3. Creating and Managing Tables
  4. Working with Graphics
  5. Working with Google Docs
  6. Comparison between MS Word and Google Docs

11 Advanced Tools Using Word Processing

  1. Meaning of Mail Merge
  2. Components of Mail Merge
  3. How to Merge Mail
  4. Equation Editor
  5. Tracking
  6. References

12 Creating Business Documentation

  1. Creating a Business Report
  2. Using MS Word for Report Writing
  3. Report Finalization
  4. Sample Business Documentation
  5. Creating Detailed Project Report

13 Working with PowerPoint

  1. PowerPoint Basics – Inserting a New Slide
  2. Slide Views
  3. Inserting a Graph & Diagram
  4. Inserting Picture
  5. Inserting Sound
  6. Inserting Video
  7. Saving PPT Files in External Memory & Cloud

14 Multimedia, Video-Making and YouTube

  1. Meaning of Multimedia
  2. Advantages of Multimedia
  3. Usage and Making Multimedia
  4. Challenges Faced in Implementing Multimedia Tool in Business
  5. Doing Designing Using Graphics
  6. Animation
  7. Making Presentation Using Graphics
  8. Making Presentation Using Multimedia
  9. Making Presentation Using Animation
  10. YouTube
  11. Application of YouTube in Business
  12. Uploading a Video through YouTube
  13. Earning Advertisement Revenue from YouTube
  14. Google AdSense
  15. Creating a YouTube Personal Channel
  16. Subscribe Follow YouTube Channel
  17. Uploading Videos on Channel
  18. Create Playlist to Organize Videos
  19. Future of Animation with Artificial Intelligence

15 Creating Business Presentation

  1. Making Presentation with Features of PowerPoint
  2. Making Business Presentation
  3. Making Research Proposal Presentation
  4. Making Project Presentation

16 Spreadsheets Concept

  1. Starting MS Excel
  2. Excel Screen Layout
  3. Excel Menu
  4. Making Worksheets
  5. Data Handling & Editing
  6. Formatting
  7. Cell Comments
  8. Naming Cells and Range
  9. Addressing and Its Types
  10. Organizing Charts and Graphs

17 Formulas and Functions

  1. Formulas
  2. Constructing Formulas
  3. Array Formulas
  4. Functions
  5. Inserting Functions
  6. Built-in Functions
  7. Mathematical Functions
  8. Statistical Functions
  9. Financial Functions
  10. Logical Functions
  11. Text and Formatting Functions
  12. Date and Time Functions

18 Graphical Presentations of Data

  1. Charts and Its Types
  2. Preparing Your Data
  3. Transforming Your Data into Charts
  4. Cross Tabulation and Charting

19 Advanced Options in Spreadsheets

  1. Sorting Data
  2. Filtering Data
  3. Searching Data
  4. Lookup
  5. Referencing
  6. Frequency Distribution Using Array Formulas
  7. Loading Data Analysis ToolPak
  8. Descriptive Statistics
  9. Correlation & Regression
  10. Hypothesis Testing

20 Creating Business Spreadsheets

  1. Loan & Lease Statements
  2. Ratio Analysis
  3. Payroll Statements
  4. Capital Budgeting
  5. Depreciation Accounting