Learn R Programming

openxlsx2 (version 0.3.1)

wb_get_tables: List Excel tables in a workbook

Description

List Excel tables in a workbook

Usage

wb_get_tables(wb, sheet = current_sheet())

Value

character vector of table names on the specified sheet

Arguments

wb

A workbook object

sheet

A name or index of a worksheet

Examples

Run this code

wb <- wb_workbook()
wb$add_worksheet(sheet = "Sheet 1")
wb$add_data_table(sheet = "Sheet 1", x = iris)
wb$add_data_table(sheet = 1, x = mtcars, tableName = "mtcars", startCol = 10)

wb$get_tables(sheet = "Sheet 1")

Run the code above in your browser using DataLab