Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi All,
Please note that I am able to get the Last 7 days rolling Average for the below chart by Using the following Dax
In this case, the Last 7 Days' AVG should be about 350/7,350/6,... so on
So how can I solve this?
Hoping for your support Guys...
Thanking a lot
Faithfully,
Rifdhy (+94770848216)
Solved! Go to Solution.
Hi @Anonymous
How about try these measures
7 Days Moving SUM. =
CALCULATE (
[Total Fuel Consumed],
ALL ( 'Calendar'[Date] ),
DATESINPERIOD ( 'Calendar'[Date], MAX ( 'Calendar'[Date] ), -7, DAY )
)# of Days =
CALCULATE (
DISTINCTCOUNT ( 'Calendar'[Date] ),
ALL ( 'Calendar'[Date] ),
DATESINPERIOD ( 'Calendar'[Date], MAX ( 'Calendar'[Date] ), -7, DAY )
)Last 7 Days AVG = DIVIDE ( [7 Days Moving SUM.] + 0, [# of Days] )
In addition, did you use 'Calendar'[Date] column on X-axis in the visual? It is expected there.
----------------------------------------------------------------------
If this reply helps solve the problem, please mark it as Solution! Kudos are appreciated too!
Hi @Anonymous
How about try these measures
7 Days Moving SUM. =
CALCULATE (
[Total Fuel Consumed],
ALL ( 'Calendar'[Date] ),
DATESINPERIOD ( 'Calendar'[Date], MAX ( 'Calendar'[Date] ), -7, DAY )
)# of Days =
CALCULATE (
DISTINCTCOUNT ( 'Calendar'[Date] ),
ALL ( 'Calendar'[Date] ),
DATESINPERIOD ( 'Calendar'[Date], MAX ( 'Calendar'[Date] ), -7, DAY )
)Last 7 Days AVG = DIVIDE ( [7 Days Moving SUM.] + 0, [# of Days] )
In addition, did you use 'Calendar'[Date] column on X-axis in the visual? It is expected there.
----------------------------------------------------------------------
If this reply helps solve the problem, please mark it as Solution! Kudos are appreciated too!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 5 | |
| 4 | |
| 4 |