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

Calculate Monthly Average for Date Range - need formula for denominator if months are blank

My formula below works properly for customers that have Revenue > 0 in all 11 months between Jan 1 2018 and Nov 30 2018.   I am dividing by 11 (highlighted in red below).

 

AvgRevenueJanNov  = divide(CALCULATE(sum(CustomerMargin[Revenue]), DATESBETWEEN(CustomerMargin[Date],DATE(2018,1,1),DATE(2018,11,30))),11,0)
 
However, the average is understated if a customer has Revenue = 0 in any of these months.
 
Any suggestions for how I can substitute a formula to divide by the number of months with Revenue > 0 instead of dividing by 11 (highlighted in red)?
 
1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

Hello @Anonymous 

You can use some variables and filters in your measure to get the count of the number of months where the revenue <> 0 for each customer.

AvgRevenueJanNov =
VAR Jan = DATE ( 2018, 1, 1 )
VAR Nov = DATE ( 2018, 11, 30 )
VAR RowCount =
    CALCULATE (
        COUNTROWS ( VALUES ( CustomerMargin[Date] ) ),
        DATESBETWEEN ( CustomerMargin[Date], Jan, Nov ),
        CustomerMargin[Revenue] <> 0
    )
RETURN
    DIVIDE (
        CALCULATE (
            SUM ( CustomerMargin[Revenue] ),
            DATESBETWEEN ( CustomerMargin[Date], Jan, Nov )
        ),
        RowCount,
        0
    )

 

 

View solution in original post

2 REPLIES 2
jdbuchanan71
Super User
Super User

Hello @Anonymous 

You can use some variables and filters in your measure to get the count of the number of months where the revenue <> 0 for each customer.

AvgRevenueJanNov =
VAR Jan = DATE ( 2018, 1, 1 )
VAR Nov = DATE ( 2018, 11, 30 )
VAR RowCount =
    CALCULATE (
        COUNTROWS ( VALUES ( CustomerMargin[Date] ) ),
        DATESBETWEEN ( CustomerMargin[Date], Jan, Nov ),
        CustomerMargin[Revenue] <> 0
    )
RETURN
    DIVIDE (
        CALCULATE (
            SUM ( CustomerMargin[Revenue] ),
            DATESBETWEEN ( CustomerMargin[Date], Jan, Nov )
        ),
        RowCount,
        0
    )

 

 

Anonymous
Not applicable

Many thanks! Works like a Charm!

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.