You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/data-factory/data-flow-aggregate-functions.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ The following functions are only available in aggregate, pivot, unpivot, and win
29
29
|[avg](data-flow-expressions-usage.md#avg)| Gets the average of values of a column. |
30
30
|[avgIf](data-flow-expressions-usage.md#avgIf)| Based on a criteria gets the average of values of a column. |
31
31
|[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 |
32
33
|[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. |
33
34
|[countAll](data-flow-expressions-usage.md#countAll)| Gets the aggregate count of values including NULLs. |
34
35
|[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
61
62
|[sumDistinct](data-flow-expressions-usage.md#sumDistinct)| Gets the aggregate sum of distinct values of a numeric column. |
62
63
|[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. |
63
64
|[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. |
64
66
|[variance](data-flow-expressions-usage.md#variance)| Gets the variance of a column. |
65
67
|[varianceIf](data-flow-expressions-usage.md#varianceIf)| Based on a criteria, gets the variance of a column. |
66
68
|[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
80
82
- List of all [metafunctions](data-flow-metafunctions.md).
81
83
- List of all [window functions](data-flow-window-functions.md).
82
84
-[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