# S4 method for workbook
existsSheet(object,name)
The sheet name to check for
Checks if the specified worksheet exists. Returns TRUE
if it
exists, otherwise FALSE
. The name
argument is vectorized
which allows to check for existence of multiple worksheets with one call.
'>workbook
, createSheet
,
removeSheet
, renameSheet
,
getSheets
, cloneSheet
# NOT RUN {
# mtcars xlsx file from demoFiles subfolder of package XLConnect
demoExcelFile <- system.file("demoFiles/mtcars.xlsx", package = "XLConnect")
# Load workbook
wb <- loadWorkbook(demoExcelFile)
# Check for existence of a worksheet called 'mtcars'
existsSheet(wb, "mtcars")
# }
Run the code above in your browser using DataLab