Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Here is the problematic line of code:

   master_wk.update('A' + str(master_index) + ':' + 'G' + str(master_index), [[1], [2], [3], [4], [5], [6]])

where master_index is some integer and master_wk is the spreadsheet

And here is the error:

gspread.exceptions.APIError: {'code': 400, 'message': 'Requested writing within range [Input!A7:G7], but tried writing to row [8]', 'status': 'INVALID_ARGUMENT'}

I'm not sure what is causing it. I looked up other answers and they seemed to be an issue with columns, but I'm dealing with rows here. Any ideas?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

Fixed it. Instead of writing [[1], [2], [3], [4], [5], [6]], I should have written [[1, 2, 3, 4, 5, 6]]. This inserts all on the same row whereas the previous code tried to insert 6 separate rows . Its funny how the second I post my own question I figure it out ))


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...