user14398375
user14398375

Reputation: 175

google spreadsheets api python - append content to a blank row

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

Answers (1)

NightEye
NightEye

Reputation: 11184

You should look into sheets api instead, specifically spreadsheets.values.append.

sample output

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

Related Questions