SpreadsheetSetCellComment

Sets a comment on a cell in a spreadsheet.

Method Signature

SpreadsheetSetCellComment(spreadsheetObj=[any], comment=[any], row=[any], column=[any], author=[any])

Arguments

Argument
Type
Required
Description
Default

spreadsheetObj

ANY

true

The spreadsheet object.

comment

ANY

true

The comment (String or Struct with formatting options).

row

NUMERIC

true

The row number (1-based).

column

NUMERIC

true

The column number (1-based).

author

STRING

false

The author of the comment (optional, only used if comment is a String).

Examples

Add a comment to a cell:

// Add note to cell
var spreadsheet = SpreadsheetNew();
SpreadsheetSetCellValue( spreadsheet, 1, 1, "Data" );
SpreadsheetSetCellComment( spreadsheet, 1, 1, "Important: review this value" );

Document spreadsheet data:

Last updated

Was this helpful?