I would like to add another column that totals the year up to each month. The code below gives me everything except NEWCOLUMN in my sample data. I wold like to add NEWCOLUMN if possible to the code below. The code below is currently a view. If another view could be created to get what I'm looking for that would be fine as well. SELECT TOP (100) PERCENT dbo.gbkmut.reknr, SUM(dbo.gbkmut.bdr_hfl) AS Amount, dbo.grtbk.bal_vw, YEAR(dbo.gbkmut.datum) AS 'Year', MONTH(dbo.gbkmut.datum) AS MonthFROM dbo.gbkmut LEFT OUTER JOIN dbo.grtbk ON dbo.gbkmut.reknr = dbo.grtbk.reknrGROUP BY dbo.gbkmut.reknr, dbo.grtbk.bal_vw, YEAR(dbo.gbkmut.datum), MONTH(dbo.gbkmut.datum), dbo.gbkmut.transtypeHAVING (dbo.grtbk.bal_vw = 'W') AND (dbo.gbkmut.transtype <> 'V')ORDER BY 'Year', Month reknr Amount Bal_vw Year Month NEWCOLUMN 52502 4000 W 2008 12 6000 52502 1.5 W 2009 1 1.5 52502 1.5 W 2009 2 3.0 52502 2.0 W 2009 3 5.0 55740 4300 W 2009 1 4300 55740 246.00 W 2009 2 4545 55740 200 W 2009 3 4745