-
-
Notifications
You must be signed in to change notification settings - Fork 498
-
-
Notifications
You must be signed in to change notification settings - Fork 498
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor named ranges to work with Sheet/Workbook scopes #256
Comments
Umm so: As described in #156 and also here, xlwings currently doesn't handle global named ranges, but only those tied to sheets. |
you are right, the workbook.Names collection has them all. The sheet scope names can be accessed either as When using Range(name_of_named_ranged), it apparently depends on the active On Sat, Oct 17, 2015 at 12:49 AM, Felix Zumstein notifications@github.com
|
This may be related to issue #156 but not sure.
In Excel, a named range can be defined either at workbook scope (per default when typing a name for a range) or at worksheet scope (when creating the name through the Name Manager GUI and choosing a sheet as scope OR when typing a name for a range that already exists at workbook scope).
The range referred by a named range (irrespective of the scope : workbook or sheet) can any range in any sheet of the workbook.
It could be useful to have access to the named range at sheet scope through the notation:
as we have currently for named range at workbook scope with
The text was updated successfully, but these errors were encountered: