| removeSheet-methods {XLConnect} | R Documentation | 
Removing worksheets from workbooks
Description
Removes a worksheet from a workbook.
Usage
## S4 method for signature 'workbook,character'
removeSheet(object,sheet)
## S4 method for signature 'workbook,numeric'
removeSheet(object,sheet)
Arguments
object | 
 The   | 
sheet | 
 The name or index of the sheet to remove  | 
Note
When removing a worksheet that is the currently active sheet then XLConnect resets
the active sheet to the first possible worksheet in the workbook.
Also note that deleting worksheets may result in invalid name references.
Author(s)
Martin Studer
Mirai Solutions GmbH https://mirai-solutions.ch
See Also
workbook, createSheet,
existsSheet, getSheets,
renameSheet, cloneSheet,
setActiveSheet
Examples
## Not run: 
# mtcars xlsx file from demoFiles subfolder of package XLConnect
mtcarsFile <- system.file("demoFiles/mtcars.xlsx", package = "XLConnect")
# Load workbook
wb <- loadWorkbook(mtcarsFile)
# Remove the worksheet called 'mtcars' from the above file
removeSheet(wb, sheet = "mtcars")
## End(Not run)
[Package XLConnect version 1.0.10 Index]