Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
Hi,
I have a rolling average measure which works as it should:
Can anyone help with the correct measure, please?
Thanks
James
Solved! Go to Solution.
Hi @James__ ,
According to your description, here are my steps you can follow as a solution.
You can create a measure as below:
Sales R12M =
VAR NumOfMonths = 12
VAR LastCurrentDate =
MAX ( 'Date'[Date] )
VAR Period =
DATESINPERIOD ( 'Date'[Date], LastCurrentDate, - NumOfMonths, MONTH )
VAR Result =
CALCULATE (
AVERAGEX (
VALUES ( 'Date'[YearMonth]),
[Sales Amount]
),
Period
)
VAR FirstDateInPeriod = MINX ( Period, 'Date'[Date] )
VAR LastDateWithSales = MAX ( Sales[Order Date] )
RETURN
IF ( FirstDateInPeriod <= LastDateWithSales, Result )
Then the result is as follows.
You can refer to the following documents that may be helpful to you:
Rolling 12 Months Average in DAX - SQLBI
Solved: Rolling 12M Average only calculate average on year... - Microsoft Power BI Community
Cumulative rolling average by day/month - Microsoft Power BI Community
Solved: Need help with rolling periods past 12M, 6M, P3M a... - Microsoft Power BI Community
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @James__ ,
According to your description, here are my steps you can follow as a solution.
You can create a measure as below:
Sales R12M =
VAR NumOfMonths = 12
VAR LastCurrentDate =
MAX ( 'Date'[Date] )
VAR Period =
DATESINPERIOD ( 'Date'[Date], LastCurrentDate, - NumOfMonths, MONTH )
VAR Result =
CALCULATE (
AVERAGEX (
VALUES ( 'Date'[YearMonth]),
[Sales Amount]
),
Period
)
VAR FirstDateInPeriod = MINX ( Period, 'Date'[Date] )
VAR LastDateWithSales = MAX ( Sales[Order Date] )
RETURN
IF ( FirstDateInPeriod <= LastDateWithSales, Result )
Then the result is as follows.
You can refer to the following documents that may be helpful to you:
Rolling 12 Months Average in DAX - SQLBI
Solved: Rolling 12M Average only calculate average on year... - Microsoft Power BI Community
Cumulative rolling average by day/month - Microsoft Power BI Community
Solved: Need help with rolling periods past 12M, 6M, P3M a... - Microsoft Power BI Community
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
87 | |
74 | |
69 | |
58 | |
55 |
User | Count |
---|---|
40 | |
38 | |
34 | |
32 | |
30 |