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
Anonymous
Not applicable

Moving average calculation with sum of two columns, excluding zeros.

Hi everyone,

 

I am pretty new to PowerBI and DAX, so I really appreciate the help here. I did a search, and while there were many examples of moving averages I did not see anything that matched my situation exactly.

 

Basically I have two values in two different columns that I want to add together, and then calculate an average based on the last three months. To do this I am currently using this formula to create the measure, which seems to be working:

 

3M_AVG_Count = CALCULATE(SUM(Table[Count1]) + SUM(Table[Count2]),DATESINPERIOD(Table[DataPeriod], LASTDATE([DataPeriod]),-3,MONTH))/3

 

The problem is that this method includes months with 0 sums of Count1 and Count2. The data looks something like this:

 

SampleData.PNG

 

In cases where the SUM of Count1 and Count2 for a given month equal 0, I want to exclude this month/record from the average calculation. For example in the data above, rather than calculating the average for the last three months for Client1, I want to pretend that Month 2 does not exist. Averaging Months 1 & 3 instead. This will still be considered the average for the last three months.

 

I think what I need here is some kind of IF statement that will determine whether to divide by 1, 2, 3, etc, but I'm not sure how to implement that correctly.

 

Hopefully that makes sense. If more clarification is needed please just let me know.

 

Thank you!!

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @Anonymous

Measures

sum = SUM(Sheet2[count1])+SUM(Sheet2[count2])

total = CALCULATE([sum],ALLEXCEPT(Sheet2,Sheet2[client]),DATESINPERIOD(Sheet2[dateperiod],MAX(Sheet2[dateperiod]),-3,MONTH))

without0 = IF([sum]<>0,[sum])

countrows = CALCULATE(COUNT(Sheet2[dateperiod]),FILTER(ALLEXCEPT(Sheet2,Sheet2[client]),[without0]<>BLANK()),DATESINPERIOD(Sheet2[dateperiod],MAX(Sheet2[dateperiod]),-3,MONTH))

final results = IF([total]<>0,[total]/[countrows],0)

1.png

 

 

Best Regards

Maggie

View solution in original post

3 REPLIES 3
v-juanli-msft
Community Support
Community Support

Hi @Anonymous

Measures

sum = SUM(Sheet2[count1])+SUM(Sheet2[count2])

total = CALCULATE([sum],ALLEXCEPT(Sheet2,Sheet2[client]),DATESINPERIOD(Sheet2[dateperiod],MAX(Sheet2[dateperiod]),-3,MONTH))

without0 = IF([sum]<>0,[sum])

countrows = CALCULATE(COUNT(Sheet2[dateperiod]),FILTER(ALLEXCEPT(Sheet2,Sheet2[client]),[without0]<>BLANK()),DATESINPERIOD(Sheet2[dateperiod],MAX(Sheet2[dateperiod]),-3,MONTH))

final results = IF([total]<>0,[total]/[countrows],0)

1.png

 

 

Best Regards

Maggie

Anonymous
Not applicable

Hi @v-juanli-msft

 

Thank you so much for this! I was able to get it working with my data. I really appreciate the help!

 

Thanks again,

David

Anonymous
Not applicable

It took a day for my post/account to be approved, so I'm just bumping this for visibility. Thanks, everyone!

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.