Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
PBIX link:
https://drive.google.com/file/d/1UKVVjEndFDuBUnsOAGVbg_CnweY2cR-d/view?usp=sharing
In the file attached, I want to get the average of next 3 months Forecasted payments(excluding current month)
I understand a formula like this will work:
Next 3 month average = CALCULATE (
AVERAGE(‘To Collect’[To Collect] ),
DATESINPERIOD ( ‘Date’[Date], EOMONTH(TODAY(),0), 3, MONTH ))
But , in the current example Forecasted Payments formula is bit complicated, so I don’t know how to make it work in this case.
Please try this measure expression to get the 3 month average.
FP 3 Month =
VAR maxdate =
MAX ( 'Date'[Date] )
VAR startnextmonth = maxdate + 1
VAR end3month =
EOMONTH (
startnextmonth,
2
)
RETURN
CALCULATE (
AVERAGEX (
DISTINCT ( 'Date'[MonthInCalendar] ),
DIVIDE (
[Incremental POC],
1 - [LastMonthPOC]
) * 474
),
FILTER (
ALL ( 'Date'[Date] ),
'Date'[Date] >= startnextmonth
&& 'Date'[Date] <= end3month
)
)
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 15 | |
| 13 | |
| 13 |