Reputation: 175
i am doing an app with the google drive api, the finall step is to stake a bunch of data and append it to a existing spreadsheet, the problem is that when i append a row it is writed in the "A1" cell and it need to be writed in the following blank row e.i, not rewriting on the old data instead it have to write to a new blank cell
Upvotes: 0
Views: 469
Reputation: 11184
You should look into sheets api instead, specifically spreadsheets.values.append
.
Given the above, spreadsheets.values.append
request will add new row/s of values after starting with row 3.
Detailed documentation should be here.
Behavior and sample output of spreadsheets.values.append
pasted above is discussed here.
Upvotes: 2