openxlsx (version 4.2.4)

saveWorkbook: save Workbook to file

Description

save a Workbook object to file

Usage

saveWorkbook(wb, file, overwrite = FALSE, returnValue = FALSE)

Arguments

wb

A Workbook object to write to file

file

A character string naming an xlsx file

overwrite

If TRUE, overwrite any existing file.

returnValue

If TRUE, returns TRUE in case of a success, else FALSE. If flag is FALSE, then no return value is returned.

See Also

createWorkbook

addWorksheet

loadWorkbook

writeData

writeDataTable

Examples

Run this code
# NOT RUN {
## Create a new workbook and add a worksheet
wb <- createWorkbook("Creator of workbook")
addWorksheet(wb, sheetName = "My first worksheet")

## Save workbook to working directory
# }
# NOT RUN {
saveWorkbook(wb, file = "saveWorkbookExample.xlsx", overwrite = TRUE)
# }

Run the code above in your browser using DataCamp Workspace