A dynamic calculation created using DAX that aggregates data based on the current context in a report.
Essayer avec l'IAMeasures are reusable formulas stored in a data model that calculate values on the fly as users interact with report visuals. Unlike calculated columns, measures do not store data in the model; instead, they perform calculations based on filters and slicers applied by the user.
A 'Total Sales' measure defined as SUM(Sales[Amount]) will automatically update its result when a user filters a report by date or region.
Calculated columns store results in the model row-by-row, while measures calculate results dynamically based on the report context.