powered by
List Excel tables in a worksheet
wb_get_tables(wb, sheet = current_sheet())
A character vector of table names on the specified sheet
A workbook object
A name or index of a worksheet
wb <- wb_workbook() wb$add_worksheet(sheet = "Sheet 1") wb$add_data_table(x = iris) wb$add_data_table(x = mtcars, table_name = "mtcars", start_col = 10) wb$get_tables(sheet = "Sheet 1")
Run the code above in your browser using DataLab