ss_add_rows {smartsheetr} | R Documentation |
Add rows to a sheet.
Description
Add rows to a sheet.
Usage
ss_add_rows(ss_id, data, column_ids = NULL)
Arguments
ss_id |
The sheetId, permalink, or name of the Smartsheet sheet to read |
data |
A data frame of rows to be added |
column_ids |
A vector of the columnIds of the smartsheets sheetId. If |
Value
A ss_addrows_resp
object
Examples
## Not run:
ss_id = ss_sheetid(ss_write_sheet(paste0("smartsheetr-example-",random_sheet_name())))
ss_add_rows(ss_id, data.frame("PK"="1"))
ss_read_sheet(ss_id)
# clean up
ss_delete_sheet(ss_id)
## End(Not run)
[Package smartsheetr version 0.1.0 Index]