Reputation: 2447
I am working on a new project with xlwings and I was wondering if and how it was possible to access and/or set the named ranges' names of a workbook.
I know we can access a named range with the Range()
function, but is it possible to get a list of names for a specific workbook (say the caller) and create a named range from python?
Upvotes: 2
Views: 2963
Reputation: 7070
The version currently under development (v0.4.0) will have a Range.name
property which will allow you to get and set named ranges: https://github.com/ZoomerAnalytics/xlwings/issues/210
Upvotes: 5