Names
- class Names
A collection of defined
nameobjects in the workbook.Excel’s internal
_xlfn.*and_xlpm.*names are excluded. Hidden user-defined names remain available. The native collection is unchanged. Iteration snapshots name objects so new internal names cannot shift it.Examples:
>>> import xlwings as xw >>> book = xw.books['Book1'] # book scope and sheet scope >>> book.names [<Name 'MyName': =Sheet1!$A$3>] >>> book.sheets[0].names # sheet scope only
Added in version 0.9.0.
- add(name, refers_to)
Defines a new name for a range, constant, or formula (including a LAMBDA).
Full support for named constants and formulas requires Excel desktop or xlwings Lite or Server. Google Sheets supports named ranges only; Office Scripts only returns named ranges in its snapshot.
- Parameters:
name (str) – Specifies the text to use as the name. Names cannot include spaces and cannot be formatted as cell references.
refers_to (str) – Describes what the name refers to, in English, using A1-style notation.
- Return type:
Added in version 0.9.0.