• This is sample table

    EventYear EventMonth Item_name Value Cummulative_Total

    2012 9 Forcast 1 1

    2012 1 Actual 2 3

    2012 10 Forcast 3 9

    2012 2 Actual 4 13

    2012 11 Forcast 5 18

    2012 3 Actual 6 24

    2012 12 Forcast 7 31

    2012 4 Actual 8 39

    But I need:

    EventYear EventMonth Item_name Value Cummulative_Total

    2012 9 Forcast 1 13

    2012 1 Actual 2 2

    2012 10 Forcast 3 16

    2012 2 Actual 4 6

    2012 11 Forcast 5 21

    2012 3 Actual 6 12

    2012 12 Forcast 7 28

    2012 4 Actual 8 12

    2012 5 Actual 0 12

    2012 6 Actual 0 12

    2012 7 Actual 0 12

    2012 8 Actual 0 12

    this is how i need..cummulate Value With Missing Month Actual till Getdate()

    Forcast from Getdate()