ursan
ursan

Reputation: 2447

xlwings - Get and set named ranges

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

Answers (1)

Felix Zumstein
Felix Zumstein

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

Related Questions