FormulaAggregator Enumeration |
The in-memory measure aggregators supported by the data retrieval engine.
Namespace:
Dundas.BI.Data.Metadata
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax [GlobalizedEnumAttribute("EC04F56F-AAD2-4395-BCB3-35F5B1D0C8F1", "GS_Data_Enum_")]
public enum FormulaAggregator
<GlobalizedEnumAttribute("EC04F56F-AAD2-4395-BCB3-35F5B1D0C8F1", "GS_Data_Enum_")>
Public Enumeration FormulaAggregator
[GlobalizedEnumAttribute(L"EC04F56F-AAD2-4395-BCB3-35F5B1D0C8F1", L"GS_Data_Enum_")]
public enum class FormulaAggregator
[<GlobalizedEnumAttribute("EC04F56F-AAD2-4395-BCB3-35F5B1D0C8F1", "GS_Data_Enum_")>]
type FormulaAggregator
Members
| Member name | Value | Description |
---|
| None | 0 | The aggregator is not set. |
| Sum | 1 | The measure values are aggregated by both rows and columns. |
| Average | 2 | The measure values are averaged by both rows and columns. |
| Minimum | 3 | The minimum value of the measure by both rows and columns. |
| Maximum | 4 | The maximum value of the measure by both rows and columns. |
| Count | 5 | The count of measure values by both rows and columns. |
| DistinctCount | 6 | The distinct count of measure values by both rows and columns. |
| Median | 7 | The median value of measure values by both rows and columns. |
| ModeMax | 8 | The mode value, or the largest mode value for multi-modal series, of measure values by both rows and columns. |
| ModeMin | 9 | The mode value, or the smallest mode value for multi-modal series, of measure values by both rows and columns. |
See Also