add_tablix_column
Insert or append a column to a tablix in an RDL report, specifying column name, expression, position, and width.
Instructions
Append (or insert) a column into a tablix. column_name is the textbox name placed in the data row's new cell — must be unique report-wide. expression goes inside that textbox's TextRun (typically =Fields!X.Value). For a tablix with >= 2 rows the first row gets header_text (default = column_name) as a literal, middle rows get blank cells, and the last row gets expression. position is 0-indexed; default appends at end. width defaults to 1in. Inserts a matching top-level TablixMember in the column hierarchy at the same index.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| width | No | ||
| position | No | ||
| expression | Yes | ||
| column_name | Yes | ||
| header_text | No | ||
| tablix_name | Yes |