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
TheBaz_57
Frequent Visitor

Average value for last 3 months returns incorrect average

Hi all,

 

Screenshot 2022-05-24 162413.jpg

I want to calculate the average for the last 3 month and calculate the following formula:

Rolling 3 = CALCULATE(AVERAGE('Master June 2021'[Value (USD)]),DATESINPERIOD('Master June 2021'[Month Year],MAX('Master June 2021'[Month Year]),-3,MONTH))

 

PB is getting me this result for the 1st set of numbers: 3,268,796.13

 

But I'm expecting 3,268,821.13 =(3,265,269.82+3,269,615.35+3,271,578.22)/3

 
Why is it different ?
 
Thanks
1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @TheBaz_57 ,

In order to give you a suitable solution as soon as possible, could you please share some sample data and field settings for your matrix visual? If any measure or calculated column are referenced, please provide their formulas along with them.

yingyinr_0-1653634658205.png

Alternatively, you can refer to the following link to try to solve your problem.

Rolling 12 Months Average in DAX

CALCULATIONITEM 'PriceToUse'[Moving Average]."Rolling Avg 3M" =
    VAR NumOfMonths = 3
    VAR LastCurrentDate =
        MAX ( 'Date'[Date] )
    VAR Period =
        DATESINPERIOD ( 'Date'[Date], LastCurrentDate, - NumOfMonths, MONTH )
    VAR Result =
        CALCULATE (
            AVERAGEX (
                VALUES ( 'Date'[Calendar Year Month] ),
                SELECTEDMEASURE ()
            ),
            Period
        )
    VAR FirstDateInPeriod = MINX ( Period, 'Date'[Date] )
    VAR LastDateWithSales = MAX ( Sales[Order Date] )
    RETURN
        IF ( FirstDateInPeriod <= LastDateWithSales, Result )

Rolling Averages In Power BI

 

Incorrect total values fix methods:

Why Your Total Is Incorrect In Power BI - The Key DAX Concept To Understand

Dax for Power BI: Fixing Incorrect Measure Totals

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yiruan-msft
Community Support
Community Support

Hi @TheBaz_57 ,

In order to give you a suitable solution as soon as possible, could you please share some sample data and field settings for your matrix visual? If any measure or calculated column are referenced, please provide their formulas along with them.

yingyinr_0-1653634658205.png

Alternatively, you can refer to the following link to try to solve your problem.

Rolling 12 Months Average in DAX

CALCULATIONITEM 'PriceToUse'[Moving Average]."Rolling Avg 3M" =
    VAR NumOfMonths = 3
    VAR LastCurrentDate =
        MAX ( 'Date'[Date] )
    VAR Period =
        DATESINPERIOD ( 'Date'[Date], LastCurrentDate, - NumOfMonths, MONTH )
    VAR Result =
        CALCULATE (
            AVERAGEX (
                VALUES ( 'Date'[Calendar Year Month] ),
                SELECTEDMEASURE ()
            ),
            Period
        )
    VAR FirstDateInPeriod = MINX ( Period, 'Date'[Date] )
    VAR LastDateWithSales = MAX ( Sales[Order Date] )
    RETURN
        IF ( FirstDateInPeriod <= LastDateWithSales, Result )

Rolling Averages In Power BI

 

Incorrect total values fix methods:

Why Your Total Is Incorrect In Power BI - The Key DAX Concept To Understand

Dax for Power BI: Fixing Incorrect Measure Totals

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.