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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
chad_clift
Frequent Visitor

Forecasting beginning month inventory based on usage forecast

I'm trying to create a measure that rolls the beginning of month inventory forecast based on the prior month's forecast.  The next month forecast is previous month stock (either actual or forecast) minus the usage in that month to get to a new forecast for the following month.  Below is where I'm currently at.  Everything seems to work until I get to September.  I should see 9/1/2022 have -537,045 (August BOM Forecast - August Usage Actual/Forecast), instead it's taking the prior 2 months usage.  BOM Forecast is the actuals as of the current month (6/1/2022).  Future months are all forecasts.

 

chad_clift_1-1655901782138.png

 

 

1 ACCEPTED SOLUTION
v-yanjiang-msft
Community Support
Community Support

Hi @chad_clift ,

According to your description, it's related to your measure formula. I create a sample and here's my solution.

Create a measure.

BOM Forecast =
VAR _Lastnonblank =
    MAXX (
        FILTER ( ALL ( 'Table' ), 'Table'[BOM on hand] <> BLANK () ),
        'Table'[Month]
    )
RETURN
    IF (
        MAX ( 'Table'[BOM on hand] ) <> BLANK (),
        MAX ( 'Table'[BOM on hand] ),
        MAXX (
            FILTER ( ALL ( 'Table' ), 'Table'[Month] = _Lastnonblank ),
            'Table'[BOM on hand]
        )
            - SUMX (
                FILTER (
                    ALL ( 'Table' ),
                    'Table'[Month] >= _Lastnonblank
                        && 'Table'[Month] <= MAX ( 'Table'[Month] )
                ),
                'Table'[Usage Actual/Forecast]
            )
    )

Get the correct result.

vkalyjmsft_0-1656394106446.png

I attach my sample below for reference.

 

Best Regards,
Community Support Team _ kalyj

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

1 REPLY 1
v-yanjiang-msft
Community Support
Community Support

Hi @chad_clift ,

According to your description, it's related to your measure formula. I create a sample and here's my solution.

Create a measure.

BOM Forecast =
VAR _Lastnonblank =
    MAXX (
        FILTER ( ALL ( 'Table' ), 'Table'[BOM on hand] <> BLANK () ),
        'Table'[Month]
    )
RETURN
    IF (
        MAX ( 'Table'[BOM on hand] ) <> BLANK (),
        MAX ( 'Table'[BOM on hand] ),
        MAXX (
            FILTER ( ALL ( 'Table' ), 'Table'[Month] = _Lastnonblank ),
            'Table'[BOM on hand]
        )
            - SUMX (
                FILTER (
                    ALL ( 'Table' ),
                    'Table'[Month] >= _Lastnonblank
                        && 'Table'[Month] <= MAX ( 'Table'[Month] )
                ),
                'Table'[Usage Actual/Forecast]
            )
    )

Get the correct result.

vkalyjmsft_0-1656394106446.png

I attach my sample below for reference.

 

Best Regards,
Community Support Team _ kalyj

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.