Forum Discussion

hackfifi's avatar
hackfifi
Icon for Helper V rankHelper V
9 years ago
Solved

Flat Line in Cumulative Curve

Hey Guys - Any idea how to get rid of the BLACK FLAT LINE for Actuals? The Actual Curve should stop after TODAY's Date. The data extract is also shown below.   The Formula used for the Actual Curve...
  • GilbertQ's avatar
    GilbertQ
    9 years ago

    Hi hackfifi

     

    What I would suggest you do is the following:

     

    Create a measure for your A Value with the example below: 

    A Total = IF(SUM('Table2'[A]) = 0,BLANK(),SUM('Table2'[A]))

     The above will always ensure that there is one place to change it, as well as then make it easier for the filter context later.

     

    Then with the above measure you can now create your cumulative curve with the following measure.

     

    Cumulative Actual = 
    Var LNBD = LASTNONBLANK('Table2'[Date],[A Total])
    RETURN
    CALCULATE([A Total],FILTER(ALL('Table2'[Date]), 'Table2'[Date] <= LNBD))
  • GilbertQ's avatar
    GilbertQ
    9 years ago
    Hi there for your Year and Month values are those coming from the 'Progress Curve' table or the date table?

    I think that might be the reason why it is not working as expected.