Forum Discussion
Anonymous
4 years agoNot applicable
Dax - Sum values by date
Hi team, I have Date and Value columns coming from one table, and I need a new calculated column to show the total sum of the values by date. Date&Time Value Needed result (SUM by date) ...
- 4 years ago
Anonymous So, make the following tweak in that measure:
Result1= CALCULATE(SUM(TableName[ValuesColumn]),ALLEXCEPT(TableName,TableName[Date_]),TableName[Task Desc]="MO"))
miggy46
2 years agoNew Member
This worked for me
Column = CALCULATE(SUM(Table1[Value]),Table1[Date&Time]).