• date 2 is the rolling sum of date 2 and date 1 by type

    rolling(date 1, type a) = (date 1, type a)

    rolling(date 2, type a) = (date 1, type a) + (date 2, type a)

    i need a look up table with a rolling sum column.