Name your cell ranges and your formulas become self-documenting — easier to write, read, and maintain.
A named range is a label you assign to a cell or range of cells. Instead of writing =SUM(B2:B100), you name B2:B100 "Revenue" and write =SUM(Revenue). Anyone reading the formula immediately understands what it does.
Select the range → click the Name Box (top left of screen, shows the cell address) → type your name → press Enter.
Formulas → Name Manager → New. Gives you more control — you can add a comment, set the scope, and see all existing names.
If your data has header labels, select the headers and data together → Formulas → Create from Selection → choose which row/column has the labels. Excel names each range automatically.
Monthly_Revenue=SUM(Revenue)
=AVERAGE(Salaries)
=VLOOKUP(A2, EmployeeData, 3, 0)
=IF(TaxRate > 0.2, Revenue * TaxRate, 0)Create a named range that automatically expands as you add data: =OFFSET(Sheet1!$A$1, 0, 0, COUNTA(Sheet1!$A:$A), 1). This range always covers every non-empty cell in column A.
ExcelPro has 880+ hands-on exercises across 9 tracks — type real formulas, get instant feedback.
Start practising free →