add_table {xlcharts}R Documentation

Check for duplicate name in definedNames and other worksheet tables before adding table.

Description

Check for duplicate name in definedNames and other worksheet tables before adding table.

Usage

add_table(py_obj, table)

Arguments

py_obj

py_obj

table

table

Value

An openpyxl Python object.

Examples

## Not run: 
wb <- Workbook()
ws <- wb$active
tab = Table(displayName="Table1", ref="A1:E5")
ws |> add_table(tab)
ws$tables

## End(Not run)


[Package xlcharts version 0.0.2 Index]