Forum Discussion

Danch89's avatar
Danch89
Frequent Visitor
4 years ago
Solved

Turn Monthly Budget into Cumulative Daily Graph

I have a table with sales budgets with a starting date for the month ahead along with a total budget for the whole month. I'd like to show a line graph with days of month showing this budget as a dai...
  • v-henryk-mstf's avatar
    4 years ago

    Hi Danch89 ,

     

    The key is to have a date dimension and have a year offset to filter out only the years you’re interested in showing.

    Try the following formula:

    Year Offset = YEAR(TODAY())-‘Date'[Year]
    Rolling 12 Months Sales =
    CALCULATE (
        SUM ( 'Sales Fact'[Revenue] ),
        DATESBETWEEN (
            'Date'[Date],
            NEXTDAY ( SAMEPERIODLASTYEAR ( LASTDATE ( 'Date'[Date] ) ) ),
            LASTDATE ( 'Date'[Date] )
        )
    )


    If the problem is still not resolved, please point it out. Looking forward to your reply.


    Best Regards,
    Henry


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