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

Average Accuracy by Month

Hi All,

 

I am looking to calculate an average forecasting accuracy by month. I have created the following measure which works as expected (see results in pic below)

 

Forecasting Accuracy = 

        AVERAGEX(
            VALUES(Dim_Date[Month]),
            [Variance % - Forecast to Actuals]
        )

However I am looking to create an average of this accuracy across the 12 months. I have placed a CALCULATE around the measure however this doesn't appear to work. I am trying to get the 69.49% in the total to appear in each months column.

 

 

Average Forecasting Accuracy = 
    CALCULATE(
        AVERAGEX(
            VALUES(Dim_Date[Month]),
            [Variance % - Forecast to Actuals]
        ),
    ALL(Dim_Date[Month])
)

Capture.PNGMany thanks

2 ACCEPTED SOLUTIONS

Hi,

 

Problem solved.  You may download my PBI file from here.

 

Hope this helps.

 

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

Anonymous
Not applicable

For others who potentially have this issue in the future if the column you are calculating ALL over (in my case Dim_Date[Month]) has a Sort by Column set to something else then you will need to include it in the ALL function. 

 

In my case Month is sorted by Period and therefore I need to change my ALL clause from ALL(Dim_Date[Month]) to ALL(Dim_Date[Month], Dim_Date[Period]).

 

This seems quite odd and I am unsure if this is intentional and I have set something up wrong or if this is a bug.

View solution in original post

12 REPLIES 12

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.