mirror of
https://github.com/redoules/redoules.github.io.git
synced 2025-12-12 15:59:34 +00:00
modifier template dans excel #3
Owner
```python
import xlwings as xw
app = xw.App(visible=False)
#%%
wb = xw.Book (r'Template_Gamme_Fusion.xlsx')
wb.names("test").refers_to_range.value = 2
wb.save("Gamme_fusion.xlsx")
wb.close()
# %%
# %%
wb = xw.Book (r'Template_Gamme_Fusion.xlsx')
wb.names
# %%
for name in wb.names:
print(name)
```
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?