Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ouafaa
Helper II
Helper II

cumulate a mesure month by month from a startdate to an enddate

I have a measure Mesure1 that I calculate according to a chosen month and year.


now I want to use this mesure to calcul another mesure.
the rule is that when I choose a periode : startdate to enddate, the new mesure "Mesure2" should accumulate the result of the mesure1 for each month from the startdate to the enddate
and finally this result should be divided by the number of months that are includes on the periode between the startdate to the enddate


How can I do this with dax ?
thank you for any help

1 ACCEPTED SOLUTION

Hello,

 

It did not resolve my problem, perhaps because I did not know how to implement it for my case, but it inspired me to find another solution.

 

I created a calculated table (month, mesure1) and after that I was able to do the sum of the mesure month by month for a choosen period.

 

Thank you very much for your help

View solution in original post

2 REPLIES 2
ValtteriN
Super User
Super User

Hi,

Try something like this:


MTD with conditions =
var _sdate = MIN('Calendar example'[Date])
var _edate = MAX('Calendar example'[Date])
var months = DISTINCTCOUNT('Calendar'[Month]) return
DIVIDE(
CALCULATE(SUM(Aggregation[Duration(Secs)]),ALL('Calendar'),'Calendar'[Date]>=_sdate,'Calendar'[Date]<=_edate,DATESMTD('Calendar'[Date])),months)
 
Use second calendar for the selected period and have a relationship between your fact table and calendar.


ValtteriN_0-1645699143166.png




I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Hello,

 

It did not resolve my problem, perhaps because I did not know how to implement it for my case, but it inspired me to find another solution.

 

I created a calculated table (month, mesure1) and after that I was able to do the sum of the mesure month by month for a choosen period.

 

Thank you very much for your help

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.