Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have Amount data based on Startdate date. How can I write the 12-month average?
i'm new, it is important to me that you are clear 🙏 thanks
Solved! Go to Solution.
Hi,
You may download my PBI file from here.
Hope this helps.
Hi,
Share some data and show the expected result.
Hello, I want the following rolling average 4 result. But since this measure was created with quick measure, I could only use it with hierarchy.
I want this measure to be used without a date hierarchy.
Hi,
Share the download link of the PBI file.
**
Hi,
You may download my PBI file from here.
Hope this helps.
thanks! that works.
Can we show the year 2022 when it is selected as a cumulative? I also want to show the last 6 months @Ashish_Mathur
You are welcome. In my measure, change the -11 to -5.
Can we show the year 2022 when it is selected as a cumulative? I also want to show the last 6 months @Ashish_Mathur
Your question is not clear. Please clarify.
hi ashish,
i want to see your 12 month average cumulative every year. I also want to show the last 6 months while doing this
I still do not understand your requirement. Show the expected result very clearly in an MS Excel file with formulas. I will try to convert those Excel formulas into DAX formulas.
*
Hi,
Someone else will help you.
Hi @sonya7 ,
You can refer the following links to get it:
Rolling 12 Months Average in DAX
Sales R12M =
VAR NumOfMonths = 12
VAR LastCurrentDate =
MAX ( 'Date'[Date] )
VAR Period =
DATESINPERIOD ( 'Date'[Date], LastCurrentDate, - NumOfMonths, MONTH )
VAR Result =
CALCULATE (
AVERAGEX (
VALUES ( 'Date'[Calendar Year Month] ),
[Sales Amount]
),
Period
)
VAR FirstDateInPeriod = MINX ( Period, 'Date'[Date] )
VAR LastDateWithSales = MAX ( Sales[Order Date] )
RETURN
IF ( FirstDateInPeriod <= LastDateWithSales, Result )
Hi, to the extent that I use it for averaging, I unfortunately get incorrect results. Could you change the dimension in the image to its non-hierarchy?
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
103 | |
99 | |
98 | |
38 | |
37 |
User | Count |
---|---|
151 | |
121 | |
73 | |
71 | |
63 |