Forum Discussion

THEG72's avatar
THEG72
Helper V
7 years ago
Solved

Generating CashFlow Forecast Tables

I have the following Table data containing cash inflow timings and amounts         In the example above, it shows 8.2 units for 5 months @ $194,103 which equates to $1,591,645 per month span...
  • v-cherch-msft's avatar
    v-cherch-msft
    7 years ago

    Hi THEG72

     

    You may create a month table like below first. Then link the two table.

     

    You can get the table with measure like below:

    Measure =
    CALCULATE (
        SUM ( Table2[Forecast Monthly Revenue] ),
        FILTER (
            ALL ( Table2 ),
            Table2[Finish Date] >= MAX ( 'Month'[Month] )
                && Table2[Start Date] <= MAX ( 'Month'[Month] )
        )
    )

    Regards,
    Cherie