Named Ranges
Assign symbolic names to cell ranges for more readable formulas.
Defining Named Ranges
:name SalesData A1:B100
:name TaxRate C1
:name
Using Named Ranges
Once defined, use the name directly in formulas:
=SUM(SalesData)
=AVERAGE(SalesData)
=C5 * TaxRate
Managing Named Ranges
Command |
Description |
|---|---|
|
Create or update a named range |
|
Show the range or value of a named range |
|
List all named ranges (use |
Scope
Named ranges are scoped to the workbook. You can reference them from any sheet within the same workbook.
=SUM(SalesData) Works from any sheet
=SalesData Returns the first cell of the named range