Forum Discussion
Moving Average
- 2 years ago
You are welcome. This measure works
Measure = divide(calculate(sum(kmr[mQty]),datesbetween(calendar[date],min(calendar[date]),eomonth(min(calendar[date]),2))),3)Hope this helps.
Hi, Ashish.
Thank you for your answer, I think I followed all the steps your recommended but no luck. Here are the details:
This is calendar table:
I created the relationship
I previously had my matrix
I replaced the date column by the one in the calendar table
I created the measure
I would expect first row for January and February the measure to be 0, for April (0+40+206)/3=82 , May (40+206+58)/3= 101.3 , and June (206+58+4)/3 = 89.3
But once I include the measure to my matrix I get some funny numbers
Hi,
Share the download link of the PowerBI file.
- martipe12 years agoHelper II
- Ashish_Mathur2 years agoSuper User
You are welcome. This measure works
Measure = divide(calculate(sum(kmr[mQty]),datesbetween(calendar[date],min(calendar[date]),eomonth(min(calendar[date]),2))),3)Hope this helps.
- martipe12 years agoHelper II
Thank you very much Ashish_Mathur !!!
That did work perfectly.
I have another question regarding this measure, but will post it as another question and will tag you and mark this answer as accepted solution.