API Reference
Command
Add-OfficeExcelComment
Adds or replaces a comment (note) on a worksheet cell.
Remarks
Adds or replaces a comment (note) on a worksheet cell.
Examples
Add a comment to A1.
PS>ExcelSheet 'Data' { Add-OfficeExcelComment -Address 'A1' -Text 'Review this cell' }
Creates a cell comment at A1.
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
Add-OfficeExcelComment [-Address <String>] [-Author <String>] [-Column <Nullable`1>] [-Initials <String>] [-PassThru] [-Row <Nullable`1>] -Text <String> [<CommonParameters>]#Parameter set:
ContextParameters
- Address String
- A1-style cell address (e.g., A1, C5).
- Author String
- Author name (optional).
- Column Nullable`1
- 1-based column index.
- Initials String
- Author initials (optional).
- PassThru SwitchParameter
- Emit the worksheet after adding the comment.
- Row Nullable`1
- 1-based row index.
- Text String
- Comment text.
Outputs
System.Object
Add-OfficeExcelComment [-Address <String>] [-Author <String>] [-Column <Nullable`1>] -Document <ExcelDocument> [-Initials <String>] [-PassThru] [-Row <Nullable`1>] [-Sheet <String>] [-SheetIndex <Nullable`1>] -Text <String> [<CommonParameters>]#Parameter set:
DocumentParameters
- Address String
- A1-style cell address (e.g., A1, C5).
- Author String
- Author name (optional).
- Column Nullable`1
- 1-based column index.
- Document ExcelDocument
- Workbook to operate on outside the DSL context.
- Initials String
- Author initials (optional).
- PassThru SwitchParameter
- Emit the worksheet after adding the comment.
- Row Nullable`1
- 1-based row index.
- Sheet String
- Worksheet name when using Document.
- SheetIndex Nullable`1
- Worksheet index (0-based) when using Document.
- Text String
- Comment text.
Outputs
System.Object