You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, I love this library, it is so much better than using the normal lib.
One thing I cant seem to solve is formatting being added to every appended row using 'append_table'. For some reason every time I append a row, the appended row inherits the formatting of the previous row. Is there a way to prevent this or to remove the formatting of the newly appended to after?
Thanks ahead of time!
The text was updated successfully, but these errors were encountered:
Hi, looks like that's the default behavior of the google sheets api call.
Some options i could think of (untested, might not work)
* try passing `valueInputOption=RAW or USER_ENTERED` to the append_table call
* remove formatting of the row by calling [this](https://pygsheets.readthedocs.io/en/latest/datarange.html#pygsheets.datarange.DataRange.apply_format). You can create a [DataRange](https://pygsheets.readthedocs.io/en/latest/datarange.html#pygsheets.datarange.DataRange) from the returned response["updates"][0]["updatedRange"]
For valueInputOption=RAW or USER_ENTERED did you mean valueInputOption='RAW'? valueInputOption='RAW' doesn't seem to work.
Hey, I love this library, it is so much better than using the normal lib.
One thing I cant seem to solve is formatting being added to every appended row using 'append_table'. For some reason every time I append a row, the appended row inherits the formatting of the previous row. Is there a way to prevent this or to remove the formatting of the newly appended to after?
Thanks ahead of time!
The text was updated successfully, but these errors were encountered: