This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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!
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 6 | |
| 6 | |
| 4 |