Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Calculate Revenue Backlog over Time

Dear all,   I would like to calculate and visualize revenue backlog development over time. Furthermore, the backlog should be displayed by Year of Contract Award in a stack bar chart. For example, ...
  • MFelix's avatar
    MFelix
    5 years ago

    Hi Anonymous ,

     

    In the case you have sent out yuo want to remove the marked values?

     

    Are the totals correct?

     

    If this is the case change your measure to:

    Revenue Backlog = 
    SUMX (
        FILTER (
            ProjectOverview,
            ProjectOverview[ContractAward] <= MAX ( InvoiceDates[Year] )
        ),
        CALCULATE (
            [Revenue],
            FILTER (
                ALLSELECTED ( InvoiceDates[Date] ),
                ISONORAFTER ( InvoiceDates[Date], MAX ( InvoiceDates[Date] ), ASC )
            )
        )
    )

     

    Check result below and in attach PBIX file: