Hi!
I couldn't get my head around with evaluation context of DAX. What is the difference between following calculated column and measure, in terms of pivottable?
[Sum of unit price CC]=sum('Sales'[Unit Price]) [Sum of unit price M]:=SUM('Sales'[Unit Price])
When I use these two in the pivot table with filters, they give different answers. Can anyone explain how do they get computed in PivotTable filtered environment?
Thanks a lot for your help 🙂
Solved! Go to Solution.
Hi @Myurathan,
I would like to suggest you take a look at below blog which told about difference between calculated column and measure:
Calculated Columns and Measures in DAX
Notice:
1. Calculation column/table not support dynamic changed based on filter or slicer. (So sum(table[column]) will return fixed value)
2. Measure can be affected by filter/slicer, so you can use it to get dynamic summary result.
Regards,
Xiaoxin Sheng
Hi @Myurathan,
I would like to suggest you take a look at below blog which told about difference between calculated column and measure:
Calculated Columns and Measures in DAX
Notice:
1. Calculation column/table not support dynamic changed based on filter or slicer. (So sum(table[column]) will return fixed value)
2. Measure can be affected by filter/slicer, so you can use it to get dynamic summary result.
Regards,
Xiaoxin Sheng
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
220 | |
68 | |
67 | |
62 | |
57 |
User | Count |
---|---|
251 | |
215 | |
92 | |
89 | |
73 |