Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
By looking at Report below i can see its computing moving average. But can someone please help me interpret below code line by line. I'm using the "Chapter06_Static Moving Averages" , which can be downloaded from here
Prices[MovingAverage200] =
CALCULATE (
AVERAGE ( Prices[Close] ),
FILTER (
ALL ( Prices[Date] ),
AND (
Prices[Date]
>= LOOKUPVALUE (
Prices[Date],
Prices[Stock], EARLIER ( Prices[Stock] ),
Prices[DayNumber], EARLIER ( Prices[DayNumber] ) - 200
),
Prices[Date] <= EARLIER ( Prices[Date] )
)
),
ALLEXCEPT ( Prices, Prices[Stock] )
)The Data looks like below
Hi there.
I've got problems understanding this formula. For instance, I have no idea why I'd write something like:
Prices[Date] <= EARLIER ( Prices[Date] ) -- (1)
Prices[Stock], EARLIER ( Prices[Stock] ) -- (2)
as in (1) there is no outer row context and in (2) there is nowhere to take the column Prices[Stock] since the iteration is performed on ALL( Prices[Date] ) only.
Please go to this website rolling-12-months-average-in-dax. It might be helpful.
Best
Darek
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 8 | |
| 7 |