1. Property aggregation
A property has a default way to roll underlying values into a model cell. Metrics normally usesum. Dimensions normally use first because they describe a group rather than a numeric total.
This behavior applies when source data contains several records for the same model position.
2. Multi-value references
A formula reference can deliberately select several values. For example:sum.
It is clearer to write the intended aggregation when the choice matters:
3. Aggregation functions
Aggregation functions let you choose how several values become one result. Supported functions include:sumaverageminandmaxcountmedianstdevandvarfirstandlast
Example
If Department Revenue is Sales 50, Marketing 30, and Engineering 20:sum(Revenue[Department: ANY])returns 100average(Revenue[Department: ANY])returns about 33.33max(Revenue[Department: ANY])returns 50count(Revenue[Department: ANY])returns 3 when all three values are present
Write the business meaning
Use the aggregation that matches the question. Totals usually usesum. Rates and ratios often need to be calculated from their underlying totals rather than averaged after the fact.