...

StyleCode Property: columnAppend

columnAppend

Specifies whether a cell should be appended at the bottom of a column, and the contents of that cell.

Applies to Type Default
table > column > append Text ""

Examples

// Example: table > column > append
table Orders = with
  [| as Date, as Quantity |]
  [| date(2023,02,21), 150 |]
  [| date(2023,02,22), 250 |]

show table "My Table" a1c4 with
  Orders.Date { append { columnAppend: "appended content" } }
  Orders.Quantity

Details

If any column in a table has a non-empty columnAppend, an additional line is appended at the bottom of the table (after the “lines/columns omitted” line, if any). All columns with a non-empty columnAppend will have the provided value appear on that line, formatted according to the StyleCode rules of the column.

User Contributed Notes
0 notes + add a note