MDX Scripting - CALCULATE
Populates each cell in a cube with an aggregate value.
Syntax
CALCULATE
Arguments
None
Remarks
The CALCULATE statement is automatically included as the first statement in a cube's MDX script when you create a cube by using SQL Server Data Tools (SSDT). The CALCULATE statement tells each cell in the cube to aggregate from lower granularity cells. After a cell is aggregated, if you subsequently populate lower granularity cells by using expressions, it impacts the aggregated value of higher granularity cells. You almost always want this aggregation to happen, but you can remove it or cause other statements to execute before this statement.
The CALCULATE statement cannot be included in a nested subcube within the MDX script. A nested subcube is defined by using the SCOPE statement. For more information about the SCOPE statement, see SCOPE Statement (MDX).
Note
Calculated members are not aggregated.
See Also
MDX Scripting Statements (MDX)
MDX Scripting Fundamentals (Analysis Services)
Define Assignments and Other Script Commands