0Pricing
Excel Formulas Academy · Lesson

Selecting and Naming Ranges of Cells

Group multiple cells into a range like A1:A10 and refer to many cells at once.

Selecting and Naming Ranges of Cells is a free Excel Formulas Academy lesson on CoddyKit — lesson 4 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Excel Formulas Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

What Is a Range?

A range is a group of cells treated as one block. Instead of naming cells one by one, you point a formula at a whole batch at once.

The Colon Means Through

You write a range with a colon, which means "through." So A1:A10 is cell A1 through A10: ten cells stacked in a column.

A1:A10

Column Ranges

When both ends share a column letter, you get a vertical range running down one column, like C2:C100. This is the most common kind.

C2:C100

Row Ranges

When both ends share a row number, you get a horizontal range running across one row, like A1:E1: five cells side by side.

A1:E1

Rectangular Ranges

A range can also be a block of rows and columns. A1:C3 covers a 3-by-3 grid: nine cells from corner A1 to corner C3.

A1:C3

Selecting a Range With the Mouse

To select a range, click the first cell and drag to the last. Or click the first, hold Shift, and click the last. The block highlights.

Using a Range in a Formula

Functions love ranges. Instead of =A1+A2+A3+A4+A5, just write =SUM(A1:A5). Shorter to write, easier to read, simpler to update.

=SUM(A1:A5)

A Worked Example

Say a week of sales sits in B2 through B8. One formula, =SUM(B2:B8), totals all seven days. Add a day, stretch the range, done.

=SUM(B2:B8)

Why Name a Range?

Typing B2:B8 works, but you can give a range a name like WeeklySales. Then =SUM(WeeklySales) reads clearly at a glance.

=SUM(WeeklySales)

How to Name a Range

To name a range, select the cells, then use the Name Box in Excel or Data > Named ranges in Sheets. Pick names with no spaces, like TaxRate.

Ranges Can Span Sheets

A range can even live on another tab. Add the sheet name and an exclamation mark: =SUM(Data!A1:A10) totals A1 to A10 on a tab called "Data."

=SUM(Data!A1:A10)

Quick Check

Count carefully how many cells a range covers.

Recap: Ranges of Cells

Recap: a range is a block of cells written with a colon, like A1:A10. Functions use ranges to work on many cells at once.

Frequently asked questions

Is the “Selecting and Naming Ranges of Cells” lesson free?

Yes — the full text of “Selecting and Naming Ranges of Cells” is free to read here on the web, and the Excel Formulas Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Excel Formulas Academy course, upgrade to CoddyKit PRO.

What will I learn in “Selecting and Naming Ranges of Cells”?

Group multiple cells into a range like A1:A10 and refer to many cells at once. You practise Excel Formulas Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Excel Formulas Academy?

No prior experience is required. Excel Formulas Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 4 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Selecting and Naming Ranges of Cells” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Excel Formulas Academy lesson?

Yes. Every Excel Formulas Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Cells, Rows, and Columns Explained
  2. Reading a Cell Address Like A1
  3. Typing Your First Cell Reference
  4. Selecting and Naming Ranges of Cells
← Back to Excel Formulas Academy