add_table {xlcharts} | R Documentation |
Check for duplicate name in definedNames and other worksheet tables before adding table.
add_table(py_obj, table)
py_obj |
py_obj |
table |
table |
An openpyxl Python object.
## Not run:
wb <- Workbook()
ws <- wb$active
tab = Table(displayName="Table1", ref="A1:E5")
ws |> add_table(tab)
ws$tables
## End(Not run)