Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Greetings! I've been trying to figure out how to get a 3-month median, but I'm stumped.
Here's my sample data set. Basically, for 6/2025 MONTH_END, I'd expect the value to display 157 since that's the median for date ranges 4/2025 - 6/2025.
Best I've done is:
But it's probably not filtering correctly.
Really appreciate any help. Thanks in advance! 🙂
Solved! Go to Solution.
Hello @katari_123,
Thank you for reaching out to the Microsoft Fabric Forum Community.
I’ve reproduced your scenario in Power BI and achieved the expected 3-month rolling median result. For example, for the MONTH_END of June 2025, the median correctly calculates as 157, using the values from April to June 2025 exactly as you described.
What I did:
R3M Median Value =
VAR CurrentDate = MAX ( 'Date'[Date] )
VAR Period =
DATESINPERIOD (
'Date'[Date],
CurrentDate,
-3,
MONTH
)
RETURN
CALCULATE (
MEDIAN ( R3M[VALUE] ),
FILTER (
ALL ( 'Date' ),
'Date'[Date] IN Period
)
)
Expected output:
I’m attaching the .pbix file for your reference so you can explore the full solution and adapt it to your dataset.
If this information is helpful, please “Accept as solution” and give a "kudos" to assist other community members in resolving similar issues more efficiently.
Thank you.
Hello @katari_123,
Thank you for reaching out to the Microsoft Fabric Forum Community.
I’ve reproduced your scenario in Power BI and achieved the expected 3-month rolling median result. For example, for the MONTH_END of June 2025, the median correctly calculates as 157, using the values from April to June 2025 exactly as you described.
What I did:
R3M Median Value =
VAR CurrentDate = MAX ( 'Date'[Date] )
VAR Period =
DATESINPERIOD (
'Date'[Date],
CurrentDate,
-3,
MONTH
)
RETURN
CALCULATE (
MEDIAN ( R3M[VALUE] ),
FILTER (
ALL ( 'Date' ),
'Date'[Date] IN Period
)
)
Expected output:
I’m attaching the .pbix file for your reference so you can explore the full solution and adapt it to your dataset.
If this information is helpful, please “Accept as solution” and give a "kudos" to assist other community members in resolving similar issues more efficiently.
Thank you.
Thanks so much for your thorough explanation! The pbix file was also very helpful. I was able to apply it to my data set.
I'm fairly new to PBI. Can you help me understand why this only works with a separate Date table?
Hello @katari_123,
You're very welcome I'm glad it helped you get the expected results.
DAX time functions like DATESINPERIOD() only work correctly with a complete and continuous date range something your fact table (like R3M) usually doesn't have. Fact tables often skip dates or only include months where there’s data.
A Date table ensures:
Without it, DAX can't calculate accurate rolling windows. That's why the Date table is essential for reliable results.
Sorry to bug you again. I tried to apply it to a larger data set with multiple users and it seemed to change the relationship because the R3M table now has duplicate dates. It's probably a simple fix, but would you be able to help me figure it out? 🙂
RollingMedian
Hello @katari_123,
Thanks for sharing your .pbix file and additional details.
I’ve reproduced your scenario using the same dataset you provided, and the 3-month rolling median per USER_ID is now calculating correctly as expected.
For example:
I’m attaching the working .pbix file for your reference so you can see the final setup and DAX formula that delivers the correct output.
Hi @katari_123 please try this
Thanks for your response! I tested it out, but it returned the same result where the Median value matches the actual value.
I did the following -- create a separate date table, linked date and main tables using date fields.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
10 | |
8 |