Forum Discussion
Previous 3 Months Average
- 5 years ago
Hi, michael_knight
Pleases try the below measure.
3 Month Rolling Average Fall Through =
IF (
ISBLANK ( [Confirmed] ),
BLANK (),
CALCULATE (
AVERAGEX ( VALUES ( 'Date'[Month/Year] ), [Fall Through %] ),
DATESINPERIOD ( 'Date'[Full Date], LASTDATE ( 'Date'[Full Date] ), -3, MONTH )
)
)Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Hi, michael_knight
Pleases try the below measure.
3 Month Rolling Average Fall Through =
IF (
ISBLANK ( [Confirmed] ),
BLANK (),
CALCULATE (
AVERAGEX ( VALUES ( 'Date'[Month/Year] ), [Fall Through %] ),
DATESINPERIOD ( 'Date'[Full Date], LASTDATE ( 'Date'[Full Date] ), -3, MONTH )
)
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Fantastic, thank you Jihwan_Kim