Skip to content Skip to sidebar Skip to footer

Update Google Spreadsheet Cell (python)

I read (quite) similar posts like this but I'm not able to fix my problem, and google documentation is not 100% useful since they don't provide real examples. The thing is I'm faci

Solution 1:

How about this modification?

In this case, please use 2 dimensional array for values. I think that the reason of your error message is due to this. So please modify as follows ans test it again.

From:

values = ['OK']

To:

values = [['OK']]

Reference:

Post a Comment for "Update Google Spreadsheet Cell (python)"