duan0065626385 2019-04-03 04:38
浏览 120
已采纳

如何识别单元格与Google Sheets API合并的单元格

I'm using Go API https://developers.google.com/sheets/api/quickstart/go

I have a sheet looks like this and want to automate some cell filling logic

  |  B   |  C   |
--+------+------+
1 |  b1  |  c1  |
--+------+      |
2 |  b2  |      |
--+------+------+
3 |  b3  |      |
--+------+------+

While using readRange := "B1:C" by

resp, _ := s.srv.Spreadsheets.Values.Get(spreadsheetId, readRange).Do()
for _, row := range resp.Values {
   ...
}

I can't tell the difference between C2 and C3. In this case, I would like to fill some values to C3 but not C2. How do I check this via API?

  • 写回答

1条回答 默认 最新

  • duan5731 2019-04-04 06:52
    关注
    • You want to retrieve the information of merge cells in a sheet using Sheets API.

    From your replying, I could understand like above. If my understanding is correct, the method of spreadsheets.values.get cannot retrieve the information of merge cells. In this case, please use the method of spreadsheets.get. The modified script is as follows.

    Modified script:

    ranges := []string{"B1:C"}
    resp, _ := s.srv.Spreadsheets.Get(spreadsheetId).Ranges(ranges...).Do()
    for _, sheet := range resp.Sheets {
        for _, merge := range sheet.Merges {
            fmt.Printf("%#v
    ", merge)
        }
    }
    

    Note:

    • This modified script supposes that you have already used Sheets API.
    • Range of B1:C means B1:C of the first tab.
    • When you run above script, you can retrieve the coordinates of the merged cells as the GridRange like below.

      {
        "sheetId": 0,
        "startRowIndex": 0,
        "endRowIndex": 2,
        "startColumnIndex": 2,
        "endColumnIndex": 3
      }
      
      • This GridRange is C1:C2 of sheet ID 0 as the a1Notation.
        • From above result, it is found that C1:C2 is the merged cell.
        • In this case, when the value is put in C1, the value is displayed. But when the value is put in C2, the value is not displayed. Please be careful this.
      • If you want to put the value using the GridRange, you can use the method of spreadsheets.batchUpdate.

    References:

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 安装 opencv4nodejs 报错
  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA
  • ¥20 csv格式数据集预处理及模型选择
  • ¥15 部分网页页面无法显示!