ReportName ReportTItle ReportTotal YTDTeamSite My Team 1 3NewSite Other Team 4 4Now, here is where the trick comes in.I want to calculate the total of Report Total and place it as row as shown below:ReportName ReportTItle ReportTotal YTDTeamSite My Team 1 3NewSite Other Team 4 4Total 5 7However, my calculation is not right because the Total is being placed as a column instead of Row.Can you help please?More concerned about this: SUM(CASE rq.reportQTitle WHEN rq.reportTitle in ('Homicide','Rape','Robbery') THEN responseTotal END) as TotalPlease see my code and thanks as always.sorry I can't get columns and value to align correctly.Select rq.ReportName, rq.reportTitle, (CASE isComments WHEN 0 THEN STR(ResponseTotal) ELSE ResponseComments END)as ReponseTotal,Sum(responseTotal) as YTD, SUM(CASE rq.reportQTitle WHEN rq.reportTitle in ('Homicide','Rape','Robbery') THEN responseTotal END) as Total FROM ReportsData rd, ReportQuestions rq,ReportDataGroup rg WHERE rq.ReportQID = rd.ReportQID AND rd.ReportGroupID=rg.ReportGroupID AND rg.StartDate = '11/1/2009' AND rg.EndDate = '11/5/2009' GROUP BY rq.ReportName,reportTitle, responseTotal, ReportQOrder,isComments,responseComments ORDER BY reportQOrder