• Not a solution, just a clarification, you need the cumulative total adding each month to the previous month like

    select opco, region, country, jan as [jan],

    jan + feb as [feb],

    jan + feb + mar as [mar],

    etc...


    And then again, I might be wrong ...
    David Webb