- Protocols of Names
- Adding Names
- Managing Names
- Removing Names
Contact Support
Named Ranges
18 Apr 20171 minute to read
A cell, range of cells, formulas, constants, or tables can be represented in a single name called Named range or defined name. This name is used to identify the purpose of cell references easier. For example, the name can be defined for the cell reference A1
to FIRSTCELL
.
Protocols of Names
The following are the rules to define a name,
- The name starts with a letter as it is a text string. UnderScore
_
can also be used. And, it must not be a single letter. - The name must not equal to Cell references
Eg. A1
- No space must be included and the name cannot be empty string.
- The names will be case-insensitive.
Adding Names
A name can be added for a cell or range of cells using addNamedRange
method.
calcObj.addNamedRange($("#newName").val(), cell)
Whereas, the cell
represents the cell reference like A1
.
Managing Names
The added names can be accessed in the formula instead of the particular cell references or range of cells. For example, for the formula =SUM(GROUPCELLS)
, the GROUPCELLS
represents the range of cells A1:A10
.
The names are maintained in a collection NamedRange
. Thus, the name can be changed or replaced using this collection.
Removing Names
A name can be removed from a cell or range of cells using removeNamedRange
method.
calcObj.removeNamedRange($("#newName").val(), cell)
Whereas, the cell
represents the cell reference like A1
.