Forum Discussion

fatconductor's avatar
fatconductor
Frequent Visitor
4 years ago
Solved

Continue last result in calculation

Hi there,  I feel like I'm 80% there with this solution but just need a little bit more help. I'm looking to project my forward inventory, based on the last available data, into the future. The...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi fatconductor ,

    Please have a try.

    Create a measure.

    Measure_1 =
    CALCULATE (
        SUM ( 'Test Data'[VALUE] ),
        FILTER (
            ALL ( 'Test Data' ),
            'Test Data'[VERSION] = "Actual/Forecast"
                && 'Test Data'[FIN_WEEK] = SELECTEDVALUE ( 'Test Data'[FIN_WEEK] )
                && 'Test Data'[MEASURE] = SELECTEDVALUE ( 'Test Data'[MEASURE] )
        )
    )
    

    Best Regards

    Community Support Team _ Polly

     

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