我正在使用http://pygsheets.readthedocs.io/en/latest/index.html google sheet api v4 的包装器。我有兴趣使用 google-sheets-api v4 设置条件格式。我正在尝试使用自定义公式根据行中“Q”列的值突出显示一行。如果 q 列包含“垃圾”,我想将该行着色为黄色。
当我查看https://github.com/nithinmurali/pygsheets/blob/master/pygsheets/client.py中的 pygheets 库和 sh_batch_update 方法时
import pygsheets
def cfr1(sheetId):
# Apply to range: A1:R
# Format cells if...: Custom formula is
# (formula:) =$Q1="TRASH"
return {
"addConditionalFormatRule": {
"rule": {
"ranges": [
{
"sheetId": sheetId,
"startColumnIndex": 'A',
"endColumnIndex": 'R',
"startRowIndex": 1,
"endRowIndex": 8
}
],
"booleanRule": {
"condition": {
"type": "CUSTOM_FORMULA",
"values": [
{
"userEnteredValue": '=$Q1="TRASH"'
}
]
},
"format": {
"backgroundColor": {
"yellow": 1.0
# "green": 0.0,
# "blue": 0.0
}
}
}
},
"index": 0
}
}
当我运行时:
gc.sh_batch_update(ssheet.id,cfr1(ws.id))
我越来越:
"Invalid JSON payload received. Unknown name "yellow" at 'requests[0].add_conditional_format_rule.rule.boolean_rule.format.background_color': Cannot find field.">
这适用于原色绿色、红色和蓝色。如何格式化为黄色背景。