工具 API

write_data_to_excel

写入数据到Excel工作表 参数: - file_id: 文件ID - sheet_name: 工作表名称 - data: 二维列表数据,子列表为行 - start_cell: 起始单元格(默认 "A1") 使用示例: write_data_to_excel( file_id="a1b2c3d4", sheet_name="Sheet1", data=[["姓名", "年龄"], ["张三", 25], ["李四", 30]], start_cell="A1" )

其他1 积分

调用信息

工具标识
excel.write_data_to_excel
服务提供方
Excel
平均响应
57 ms
近 7 天调用
1

输入参数

file_id必填

string

sheet_name必填

string

data必填

array

start_cell

string