List Excel tables in a workbook
List Excel tables in a workbook
getTables(wb, sheet)
wb |
A workbook object |
sheet |
A name or index of a worksheet |
character vector of table names on the specified sheet
wb <- createWorkbook() addWorksheet(wb, sheetName = "Sheet 1") writeDataTable(wb, sheet = "Sheet 1", x = iris) writeDataTable(wb, sheet = 1, x = mtcars, tableName = "mtcars", startCol = 10) getTables(wb, sheet = "Sheet 1")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.