readxl (version 0.1.1)

excel_sheets: List all sheets in an excel spreadsheet.

Description

List all sheets in an excel spreadsheet.

Usage

excel_sheets(path)

Arguments

path
Path to the xls/xlsx file

Examples

Run this code
excel_sheets(system.file("extdata/datasets.xlsx", package = "readxl"))
excel_sheets(system.file("extdata/datasets.xls", package = "readxl"))

# To load all sheets in a workbook, use lapply
path <- system.file("extdata/datasets.xls", package = "readxl")
lapply(excel_sheets(path), read_excel, path = path)

Run the code above in your browser using DataLab