-
Notifications
You must be signed in to change notification settings - Fork 117
excel comment
zmworm edited this page Apr 4, 2026
·
29 revisions
Cell comments and notes.
Path: /{SheetName}/comment[N]
- add - Add a comment to a cell
officecli get data.xlsx /Sheet1/comment[1]
officecli get data.xlsx /Sheet1/comment[2]| Property | Accepted Values | Description |
|---|---|---|
text |
string | Update comment text |
author |
string | Update author name |
officecli set data.xlsx /Sheet1/comment[1] --prop text="Updated comment text"
officecli set data.xlsx /Sheet1/comment[1] --prop author="Bob"officecli query data.xlsx "/Sheet1/comment[*]"
officecli query data.xlsx "/Sheet1/comment[author=Alice]"officecli remove data.xlsx /Sheet1/comment[1]Based on OfficeCLI v1.0.34