Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I am trying to plot the 7 Day rolling average of CT, but i am unable to do so for some reason using the quick measures. Can anybody help me, will really appreciate it. Thanks!
PBI File: https://drive.google.com/file/d/1vRCu6cUpuenbHro2t3TD8E3oa6YRFL7z/view?usp=sharing
Solved! Go to Solution.
Hi, @Stan_Lego ;
If you want to use rolling average base on [CheckInTime] , please try it.
RoLL =
CALCULATE (
AVERAGE ( [CT] ),
FILTER (
ALL ( TrackingTable ),
DATEDIFF ( [CheckInTime], MAX ( [CheckInTime] ), DAY ) <= 6
&& DATEDIFF ( [CheckInTime], MAX ( [CheckInTime] ), DAY ) >= 0
)
)
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Stan_Lego ;
I don't quite understand why Averge starts from 0, can you share the results and logic you expect to output?
RoLL =
CALCULATE(AVERAGE([CT]),FILTER(ALL(TrackingTable),DATEDIFF([CheckOutTime],MAX([CheckOutTime]),DAY)<=6&&DATEDIFF([CheckOutTime],MAX([CheckOutTime]),DAY)>=0))
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Stan_Lego ;
If you want to use rolling average base on [CheckInTime] , please try it.
RoLL =
CALCULATE (
AVERAGE ( [CT] ),
FILTER (
ALL ( TrackingTable ),
DATEDIFF ( [CheckInTime], MAX ( [CheckInTime] ), DAY ) <= 6
&& DATEDIFF ( [CheckInTime], MAX ( [CheckInTime] ), DAY ) >= 0
)
)
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you for your help, i just wanna ask why doesn't the graph start from zero and instead it starts from a particular value. Is it possible to make the graph only calculate rolling average from the first date in the database based on check out?
Thanks again for the help
@Stan_Lego , with help from date table you should calculate rolling 7 days like
example
Rolling = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],MAX('Date'[Date ]),-7,DAY))
Yet to check the file
@amitchandak Yep I have tried but when it does not show anything when i want to plot it on a line graph
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 46 | |
| 43 | |
| 39 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 67 | |
| 31 | |
| 27 | |
| 24 |