set_range_values
Set a 2D array of data into a specified Excel range. Define the start cell, sheet name, and file path to populate values efficiently. Ideal for structured data entry in spreadsheets.
Instructions
指定された範囲に2次元配列のデータを設定します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | 対象のExcelファイルの絶対パス | |
| sheetName | Yes | 対象のワークシート名 | |
| startCell | Yes | データ入力を開始するセル位置(例: A1)。ここから右下方向にデータが入力されます | |
| values | Yes | 2次元配列のデータ。外側の配列が行、内側の配列が列を表します。例: [["商品名", "価格"], ["商品A", 1000]] |