...
For a version of this function computed over a rolling window of rows, see ROLLINGSUM Function.
d-codelang-syntax |
---|
RawWrangle | true |
---|
Type | ref |
---|
showNote | true |
---|
WrangleText | pivot value: |
---|
| SUMsum(myRating) group:postal_code limit:1 |
|
...
Output: Returns the sum of the group of values from the myRating
column
...
.
d-code-lang-syntax |
---|
RawWrangle | true |
---|
Type | syntax |
---|
showNote | true |
---|
WrangleText | pivot value: |
---|
| SUMsum(function_col_ref) [group:group_col_ref] [limit:limit_count] |
|
sum(function_col_ref) [group:group_col_ref] [limit:limit_count] |
Argument | Required? | Data Type | Description |
---|
function_col_ref | Y | string | Name of column to which to apply the function |
...