Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Antmkjr
Post Patron
Post Patron

Next 3 month Average

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)

 

1.PNG

 

 

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.

1 REPLY 1
mahoneypat
Microsoft Employee
Microsoft Employee

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





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.