powered by
Update the position of a data table, possibly written using wb_add_data_table()
wb_add_data_table()
wb_update_table(wb, sheet = current_sheet(), dims = "A1", tabname)
A workbook
A worksheet
Cell range used for new data table.
A table name
Be aware that this function does not alter any filter. Excluding or adding rows does not make rows appear nor will it hide them.
wb <- wb_workbook()$add_worksheet()$add_data_table(x = mtcars) wb$update_table(tabname = "Table1", dims = "A1:J4")
Run the code above in your browser using DataLab