March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have a table with the format below . I need to be able to create a measure that calculates the sum of the values based on the corresponding date (month to date ONLY). For instance, today's value would be 14 and tomorrow's would be 214.
Thank you for the help
Date Value
1-31 200
2-1 2
2-2 1
2-3 2
2-4 1
2-5 2
2-6 1
2-7 2
2-8 3
2-9 200
Solved! Go to Solution.
You may try DAX function TOTALMTD, create a measure and use DAX formula below:
Result = TOTALMTD ( SUM ( Table[Value] ), Table[Date] )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Tampton,
First you need to have a date column with DD/MM/YYYY, and use DATESMTD function to get desired results.
Regards,
Pavan Vanguri.
You may try DAX function TOTALMTD, create a measure and use DAX formula below:
Result = TOTALMTD ( SUM ( Table[Value] ), Table[Date] )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hello @thampton,
need a lot more explaination. maybe some pictures. not really sure what your asking
best regards,
Collin
@Anonymous
Today is 2-8 : When i write the measure i want it to calculate the sum of the values next to the dates from 2-1 to 2-8 as shown above, but tomorrow, it should sum the values from 2-1 to 2-9, etc.
ok, i see now, and do you want it to work with real time? or simply add the days before the date selected??
@Anonymous Yes, updating real time would be perfect. I dont plan on using slicer to control date.
I am not that strong with date formating and code, sorry on that respect ,
but I would suggest looking through this website here that has all the dax commands that can be used in power BI, spesificaly heres a link to the date and time section
https://docs.microsoft.com/en-us/dax/date-and-time-functions-dax
sorry I could not be of more help.
best regards,
Collin
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |