Difference between revisions of "Translations:Expressions/219/en"
(Importing a new version from external source) |
(Importing a new version from external source) |
||
| Line 1: | Line 1: | ||
| + | * '''"@accumCol[column]"''' - Cumulative value from column to current row. Useful for calculating variable mean. | ||
| + | ** Example: ''"@accumCol[column]"'' / ''"@row"'' | ||
| + | * '''"@avg[column]"''' - Average column, similar to ''"@sum[column]"'' / ''"@count"'' | ||
* '''"@count"''' - Total number of rows that were returned for the component. | * '''"@count"''' - Total number of rows that were returned for the component. | ||
| + | * '''"@prev[column]"''' - Row value before current row for this column | ||
* '''"@row"''' - Current row number | * '''"@row"''' - Current row number | ||
* '''"@sum[column]"''' - Sum of the indicated column. | * '''"@sum[column]"''' - Sum of the indicated column. | ||
** Example: ''"@sum[Price]"'' - returns the sum of all rows in the ''Price'' column. | ** Example: ''"@sum[Price]"'' - returns the sum of all rows in the ''Price'' column. | ||
| − | * '''"@ | + | * '''"@totalColumnValue[column]"''' - Value of total column, (if present), from this column. |
| − | |||
* '''"@totalRowValue[column]"''' - Value of total row, (if present), from this column. | * '''"@totalRowValue[column]"''' - Value of total row, (if present), from this column. | ||
| − | |||
| − | |||
Latest revision as of 17:50, 4 July 2025
- "@accumCol[column]" - Cumulative value from column to current row. Useful for calculating variable mean.
- Example: "@accumCol[column]" / "@row"
- "@avg[column]" - Average column, similar to "@sum[column]" / "@count"
- "@count" - Total number of rows that were returned for the component.
- "@prev[column]" - Row value before current row for this column
- "@row" - Current row number
- "@sum[column]" - Sum of the indicated column.
- Example: "@sum[Price]" - returns the sum of all rows in the Price column.
- "@totalColumnValue[column]" - Value of total column, (if present), from this column.
- "@totalRowValue[column]" - Value of total row, (if present), from this column.