How to add a dropdown list to google sheet using Google Sheets API python

前端 未结 1 365
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-17 06:21

Using Google Sheets API python How to add a dropdown list to google sheet with list items [YES. NO, MAYBE] for an invite asking friend

1条回答
  •  醉梦人生
    2020-12-17 06:57

    I found the trick inside the setDataValidation property and choosing ONE_OF_LIST as the condition type and all I had to do is providing the list of items inside the value list

    {
      "setDataValidation": {
        "range": {
          "sheetId": sheet_id,
          "startRowIndex": 1,
          "endRowIndex": 1,
          "startColumnIndex": 22,
          "endColumnIndex": 23
        },
        "rule": {
          "condition": {
            "type": 'ONE_OF_LIST',
            "values": [
              {
              "userEnteredValue": 'YES',
              },
              {
              "userEnteredValue": 'NO',
              },
              {
              "userEnteredValue": 'MAYBE',
              },
            ],
          },
          "showCustomUi": True,
          "strict": True
        }
      }
    },
    

    0 讨论(0)
提交回复
热议问题