एग्रीगेशन टाइप तय करने वाला एक एन्म, जिसे Field के लिए सेट किया जा सकता है.
किसी एनम को कॉल करने के लिए, उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल किया जाता है. उदाहरण के लिए,
DataStudioApp.AggregationType.AVG.
प्रॉपर्टी
प्रॉपर्टी
टाइप
ब्यौरा
AVG
Enum
औसत.
COUNT
Enum
गिनती.
COUNT_DISTINCT
Enum
Count Distinct.
MAX
Enum
बेहतर
MIN
Enum
बुनियादी
SUM
Enum
कुल योग.
AUTO
Enum
अपने-आप. आपके दिए गए फ़ॉर्मूला के आधार पर तैयार किए गए उन फ़ील्ड के लिए, अपने-आप एग्रीगेट होने की सुविधा का इस्तेमाल करें जिनमें एग्रीगेट किए गए फ़ील्ड का रेफ़रंस दिया गया हो.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2024-12-02 (UTC) को अपडेट किया गया."],[[["`AggregationType` is an enum used to define how data is aggregated within a [Field](/apps-script/reference/data-studio/field) in Data Studio."],["You can call an AggregationType enum through its parent class like so: `DataStudioApp.AggregationType.AVG`."],["Available aggregation types include `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MIN`, `SUM`, and `AUTO`, with `AUTO` recommended for calculated fields referencing an aggregated field."],["The `NO_AGGREGATION` enum is deprecated; use `AUTO` instead."]]],["`AggregationType` is an enum defining aggregation options for a `Field`. It includes properties like `AVG`, `COUNT`, `COUNT_DISTINCT`, `MAX`, `MIN`, `SUM`, and `AUTO`. These represent the types of calculations that can be applied to a field's data. `AUTO` is used for calculated fields that reference aggregated data. The `NO_AGGREGATION` property is deprecated and `AUTO` should be used instead. Each enum can be called by its parent class, name, and property.\n"]]