-
Notifications
You must be signed in to change notification settings - Fork 950
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Conditional Formatting #525
Comments
I am interested to this feature too. |
Gspread 2.0 should be on APIv4. |
FYI, you can easily make your own calls into the API from within
Where You can copy/paste from Google's examples, just remove the |
Thanks! I was getting this error: No grid with id: 0 Realized that I needed to add:
where sheetId = https://docs.google.com/spreadsheets/d/{spreadsheetId}/edit#gid={sheetId} |
Maybe this is too old, but while trying to use this I'm getting error as .
uploaded = d2g.upload(df, spreadsheet_key, wks_name, credentials=creds, row_names=False) where uploaded is of type |
Hi @andrewgross, this is definitely something that can be done with gspread. You can do it yourself like mentioned by @alugowski but a helper function in the Hi @vikrant-pune, we you mention is a different issue and is getting off-topic. Please open a new issue with you message, backtrack and you code snippet and we'll help you from there. Thank you. |
In order to add conditional formating, one could make a new PR and introduce this feature. This can be done using other requests as example and using the following documentation: |
Hey,
Thanks for making this library, it has significantly lowered the bar to working with Google Sheets for me. It would be awesome to have support for Conditional Formatting on columns.
https://developers.google.com/sheets/api/samples/conditional-formatting
It looks like it could fit well in to the
range
style notation, with some kwargs for the formatting options. If I get a chance I will create a PR.The text was updated successfully, but these errors were encountered: