Skip to content

Commit 7a50f41

Browse files
authored
Update data-flow-aggregate-functions.md
1 parent 9c7ba5c commit 7a50f41

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

articles/data-factory/data-flow-aggregate-functions.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ The following functions are only available in aggregate, pivot, unpivot, and win
2929
| [avg](data-flow-expressions-usage.md#avg) | Gets the average of values of a column. |
3030
| [avgIf](data-flow-expressions-usage.md#avgIf) | Based on a criteria gets the average of values of a column. |
3131
| [collect](data-flow-expressions-usage.md#collect) | Collects all values of the expression in the aggregated group into an array. Structures can be collected and transformed to alternate structures during this process. The number of items will be equal to the number of rows in that group and can contain null values. The number of collected items should be small. |
32+
| [collectUnique](data-flow-expressions-usage.md#collectUnique) | Collects all values of the expression in the aggregated group into a unique array. Structures can be collected and transformed to alternate structures during this process.The number of items will be equal to the number of rows in that group and can contain null values. The number of collected items should be small |
3233
| [count](data-flow-expressions-usage.md#count) | Gets the aggregate count of values. If the optional column(s) is specified, it ignores NULL values in the count. |
3334
| [countAll](data-flow-expressions-usage.md#countAll) | Gets the aggregate count of values including NULLs. |
3435
| [countDistinct](data-flow-expressions-usage.md#countDistinct) | Gets the aggregate count of distinct values of a set of columns. |
@@ -61,6 +62,7 @@ The following functions are only available in aggregate, pivot, unpivot, and win
6162
| [sumDistinct](data-flow-expressions-usage.md#sumDistinct) | Gets the aggregate sum of distinct values of a numeric column. |
6263
| [sumDistinctIf](data-flow-expressions-usage.md#sumDistinctIf) | Based on criteria gets the aggregate sum of a numeric column. The condition can be based on any column. |
6364
| [sumIf](data-flow-expressions-usage.md#sumIf) | Based on criteria gets the aggregate sum of a numeric column. The condition can be based on any column. |
65+
| [topN](data-flow-expressions-usage.md#topN) | Gets the top N values for this column. |
6466
| [variance](data-flow-expressions-usage.md#variance) | Gets the variance of a column. |
6567
| [varianceIf](data-flow-expressions-usage.md#varianceIf) | Based on a criteria, gets the variance of a column. |
6668
| [variancePopulation](data-flow-expressions-usage.md#variancePopulation) | Gets the population variance of a column. |
@@ -80,4 +82,4 @@ The following functions are only available in aggregate, pivot, unpivot, and win
8082
- List of all [metafunctions](data-flow-metafunctions.md).
8183
- List of all [window functions](data-flow-window-functions.md).
8284
- [Usage details of all data transformation expressions](data-flow-expressions-usage.md).
83-
- [Learn how to use Expression Builder](concepts-data-flow-expression-builder.md).
85+
- [Learn how to use Expression Builder](concepts-data-flow-expression-builder.md).

0 commit comments

Comments
 (0)