gpt4 book ai didi

excel - 如何使用 Microsoft Graph 更新 Excel 中表格的特定行?

转载 作者:行者123 更新时间:2023-12-02 11:04:33 25 4
gpt4 key购买 nike

我尝试使用 Microsoft Graph 更新 Excel 中表格的特定行。

我在 the table section 中没有找到任何文档.

例如,我想更新第 6 行(索引 5)。

有这样的办法吗?谢谢

PATCH:
https://graph.microsoft.com/beta/me/drive/items/12345/workbook/tables/Table1/rows/update

{
"index": 5,
"values": [
[1, 2, 3]
]
}

最佳答案

您可以按如下方式修补表格行。此示例更新包含 4 列的表的第 2 行(索引=1)。请注意,索引值是 0 索引的,并且标题行不是此处的行集合的一部分。

PATCH https://graph.microsoft.com/v1.0/me/drive/root:/nameditemtest.xlsx:/workbook/worksheets/sheet1/tables/Table1/rows/$/ItemAt(index=1)

{
"values": [
[
"A",
"B",
"C",
"D"
]]
}

结果: enter image description here

如果您希望修补标题行,可以使用 PATCH ../tables/{id|name|}/rows/$/的路径修补基础范围 values 属性ItemAt(index={index}/headerRowRange -或- 使用 PATCH ../tables/{id|name}/columns/的路径更新表列的 name 属性{id}

关于excel - 如何使用 Microsoft Graph 更新 Excel 中表格的特定行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43840622/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com