TabularAggregateFunction Enumeration
Provides options for the aggregate function to use when summarizing a table column for a tabular model.
Enumeration Values
Name | Summary |
---|---|
Default | Specifies that the default aggregate function for the column data type should be used. |
None | Specifies that the column should not be aggregated. |
Sum | Specifies that column values should be added together to compute a sum. |
Min | Specifies that minimum column value should be used. |
Max | Specifies that maximum column value should be used. |
Count | Specifies that the count of non-empty column values should be used. |
Average | Specifies that the column values should be averaged. |
DistinctCount | Specifies that the count of distinct column values should be used. |