My App

Calculate

Power BI documentation.

CALCULATE Function

CALCULATE is one of the most important functions in DAX.

It allows you to modify filter context when evaluating a calculation.

Example

Total Sales =
CALCULATE(
    SUM(Sales[Amount])
)

On this page