ss_replace_sheet {smartsheetr} | R Documentation |
Replace the contents of a sheet with a new data frame
Description
Replace the contents of a sheet with a new data frame
Usage
ss_replace_sheet(ss_id, data)
Arguments
ss_id |
The sheetId, permalink, or name of the Smartsheet sheet to read |
data |
A data frame |
Value
A named list of ss_resp objects
Examples
## Not run:
ss_id = ss_sheetid(ss_write_sheet(paste0("smartsheetr-example-",random_sheet_name())))
ss_replace_sheet(ss_id, data=mtcars)
ss_read_sheet(ss_id)
# clean up
ss_delete_sheet(ss_id)
## End(Not run)
[Package smartsheetr version 0.1.0 Index]