Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I have tried multiple online sources to build a 12 month roling average, with no success. The 'New Quick Measure' option also did not work for me.
I have a measure called Availability. The code is as follows:
Availability = CALCULATE(SUM(ShiftEvents[DurationInHours]),FILTER(ShiftEvents,ShiftEvents[Level_3_Code]="T200")) / CALCULATE(SUM(ShiftEvents[DurationInHours]),FILTER(ShiftEvents,ShiftEvents[Level_2_Code]="T100"))
The following two tables exist:
Shifts Table
ShiftEvents Table
The underlined columns have a one to many relationship.
'ShiftEvents' table has a date column called 'ShiftDate'. This column is linked to the 'ShiftDate' column in a a table called 'Shifts'. The 'Shifts' table is where the 'MonthDate' column exists in order to aggregate/slice data via Month.
In summary, I need to create a measure that takes the data from Availability, and construct a 12 month moving average by using the 'MonthDate' column in the 'Shifts' table.
Any help will be appreciated!
Solved! Go to Solution.
Hi @fjmocke,
I would suggest you calculate Availability via calculated column.
In ShiftEvents Table, please add:
MonthNo = MONTH('ShiftEvents Table'[ShiftDate])
Availability col =
(
CALCULATE (
SUM ( 'ShiftEvents Table'[DurationInHours] ),
FILTER (
ALLEXCEPT ( 'ShiftEvents Table', 'ShiftEvents Table'[MonthNo] ),
'ShiftEvents Table'[Leve_3_Code] = "T200"
)
)
/ CALCULATE (
SUM ( 'ShiftEvents Table'[DurationInHours] ),
FILTER (
ALLEXCEPT ( 'ShiftEvents Table', 'ShiftEvents Table'[MonthNo] ),
'ShiftEvents Table'[Leve_2_Code] = "T100"
)
)
)
/ CALCULATE (
COUNT ( 'ShiftEvents Table'[ShiftDate] ),
ALLEXCEPT ( 'ShiftEvents Table', 'ShiftEvents Table'[MonthNo] )
)
Then, create measure like below:
Moving average availability =
CALCULATE (
SUM ( 'ShiftEvents Table'[Availability col] ),
FILTER (
ALL ( 'Shifts table' ),
'Shifts table'[MonthDate] <= MAX ( 'Shifts table'[MonthDate] )
&& 'Shifts table'[MonthDate]
> MAX ( 'Shifts table'[MonthDate] ) - 3
)
)
/ 3
Regards,
Yuliana Gu
Hi @fjmocke,
I would suggest you calculate Availability via calculated column.
In ShiftEvents Table, please add:
MonthNo = MONTH('ShiftEvents Table'[ShiftDate])
Availability col =
(
CALCULATE (
SUM ( 'ShiftEvents Table'[DurationInHours] ),
FILTER (
ALLEXCEPT ( 'ShiftEvents Table', 'ShiftEvents Table'[MonthNo] ),
'ShiftEvents Table'[Leve_3_Code] = "T200"
)
)
/ CALCULATE (
SUM ( 'ShiftEvents Table'[DurationInHours] ),
FILTER (
ALLEXCEPT ( 'ShiftEvents Table', 'ShiftEvents Table'[MonthNo] ),
'ShiftEvents Table'[Leve_2_Code] = "T100"
)
)
)
/ CALCULATE (
COUNT ( 'ShiftEvents Table'[ShiftDate] ),
ALLEXCEPT ( 'ShiftEvents Table', 'ShiftEvents Table'[MonthNo] )
)
Then, create measure like below:
Moving average availability =
CALCULATE (
SUM ( 'ShiftEvents Table'[Availability col] ),
FILTER (
ALL ( 'Shifts table' ),
'Shifts table'[MonthDate] <= MAX ( 'Shifts table'[MonthDate] )
&& 'Shifts table'[MonthDate]
> MAX ( 'Shifts table'[MonthDate] ) - 3
)
)
/ 3
Regards,
Yuliana Gu
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 74 | |
| 72 | |
| 39 | |
| 35 | |
| 23 |