Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
Solved! Go to Solution.
@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]).
@Anonymous Follow the below steps to get the result.
Step 1: Create below column which only extract the Date part from your date column.
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.
@Anonymous So, make the following tweak in that measure:
Result1= CALCULATE(SUM(TableName[ValuesColumn]),ALLEXCEPT(TableName,TableName[Date_]),TableName[Task Desc]="MO"))
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 , 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())
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |