Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

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)

Result #2

01.01.2022 12:01:00 AM

5

 

15

01.01.2022 15:00:00 PM

10

15

15

02.02.2022 01:00:00 AM

20

 

50

02.02.2022 05:00:00 AM

20

 

50

02.02.2022 10:00:00 PM

10

50

50

03.02.2022 11:00:00 AM

2

 

5

03.02.2022 11:15:00 AM

3

5

5

 

I tried this Dax calculation, but it didn’t work:
Total_SUM = CALCULATE (SUM ( ‘Table1[Value]), FILTER ( ALL ('Table1), ‘Table1[Date&Time] <= MAX (' Table1[Date&Time])))

 

I will appreciate the help.

  • Anonymous So, make the following tweak in that measure:

     Result1= CALCULATE(SUM(TableName[ValuesColumn]),ALLEXCEPT(TableName,TableName[Date_]),TableName[Task Desc]="MO"))

     

     

6 Replies

  • Anonymous , New columns

     


    new column =
    var _date = datevalue([Date&Time])
    return
    sumx(filter(Table, datevalue([Date&Time]) = _date ), [Value])

     

     

    new column =
    var _date = datevalue([Date&Time])
    var _max = maxx(filter(Table, datevalue([Date&Time]), [Date&Time])
    return
    if([Date&Time] =_max, sumx(filter(Table, datevalue([Date&Time]) = _date ), [Value]), blank())

  • Anonymous Follow the below steps to get the result.

    Step 1: Create below column which only extract the Date part from your date column.

    Date_  Column= LEFT(TableName[YourDateColumn],10)
     
    Step 2: Create a DAX measure like below:
    Result1 = CALCULATE(SUM(TableName[ValuesColumn]),ALLEXCEPT(TableName,TableName[Date_]))
     
    Step 3: You'll get the result like below:
     
     
    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi amitchandak ,

      Thank you for your response. Currently, I have an additional filter for my whole table (apologies for not mentioning it before). The column is Task Description - "AM", "MO", and my table is filtering to show dates and values only for Task desc. = "MO". 
      By using your formula I received the sum of all values for a day (AM & MO). The filter applied to myreport page didn't affect the new Calc. column. 

      Is it possible the "New column" to show the sum of values only where the Task Desc = "MO".

      Thank you.

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi Tahreem24 ,

      Thank you for your response. As I just mention, currently, I have an additional filter for my whole table (apologies for not mentioning it before). The column is Task Description - "AM", "MO", and my table is filtering to show dates and values only for Task desc. = "MO". 
      By using your formula I received the sum of all values for a day (AM & MO). The filter applied to myreport page didn't affect the new Calc. column. 

      Is it possible the "New column" to show the sum of values only where the Task Desc = "MO".

      Thank you.

      • Tahreem24's avatar
        Tahreem24
        Super User

        Anonymous So, make the following tweak in that measure:

         Result1= CALCULATE(SUM(TableName[ValuesColumn]),ALLEXCEPT(TableName,TableName[Date_]),TableName[Task Desc]="MO"))

         

         

  • This worked for me
    Column = CALCULATE(SUM(Table1[Value]),Table1[Date&Time]).