Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
HI, all
I'd like to get monthly moving average by making measure as below, but it may not work well
Could you please help me
------------------------------------------------------------
<Measure>
<Table>
Sales
Calendar
------------------------------------------------------------
@mangaus1111
Sorry I was wrong
What I'd like to get is 12 (average of sum of April "10" and sum of May 14 )
@mangaus1111
Thanks a million!
Based on your sample, what I'd like to get is 5.5(average of April 5 and May 6)
then in the end what you want is the moving average of a moving average
@mangaus1111
I wrote this measure as below accordingto your advise
But, result is not as I expected.
It seems that average is calculated on a daily basis not monthly.
Is your model not like this?
Hi @taimaizumi ,
try this measure
Moving Average Last 2 Months =
VAR _MaxMonth = MAX('Date'[Year*Month])
RETURN
CALCULATE(AVERAGEX('Facts5','Facts5'[Sales]),
'Date'[Year*Month]>= _MaxMonth -1 && 'Date'[Year*Month] <= _MaxMonth
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
HI, @mangaus1111
Sorry, my explanation was not enough
What I'd like to get is "moving" average among this month and previous month by month and product
But if the granularity of your report is Product and Month, then you need a simple Averagex.
Hi @mangaus1111
Thank you for you quick response.
Output image is below.
I'd like to get result by monthly and products.
Hi @taimaizumi ,
in the row of the matrix do you want Day and Product or Month and Product?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
145 | |
87 | |
66 | |
51 | |
45 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |