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:

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

报告相同问题?

悬赏问题

  • ¥15 Python程序,深度学习,有偿私
  • ¥15 扫描枪扫条形码出现问题
  • ¥35 poi合并多个word成一个新word,原word中横版没了.
  • ¥15 【火车头采集器】搜狐娱乐这种列表页网址,怎么采集?
  • ¥15 求MCSCANX 帮助
  • ¥15 机器学习训练相关模型
  • ¥15 Todesk 远程写代码 anaconda jupyter python3
  • ¥15 我的R语言提示去除连锁不平衡时clump_data报错,图片以下所示,卡了好几天了,苦恼不知道如何解决,有人帮我看看怎么解决吗?
  • ¥20 关于URL获取的参数,无法执行二选一查询
  • ¥15 液位控制,当液位超过高限时常开触点59闭合,直到液位低于低限时,断开