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:

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

报告相同问题?

悬赏问题

  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败
  • ¥15 树莓派5怎么用camera module 3啊
  • ¥20 java在应用程序里获取不到扬声器设备
  • ¥15 echarts动画效果的问题,请帮我添加一个动画。不要机器人回答。
  • ¥15 Attention is all you need 的代码运行
  • ¥15 一个服务器已经有一个系统了如果用usb再装一个系统,原来的系统会被覆盖掉吗