Hello JHermiz,The server running is indeed MS SQL Server 2005. My SQL is pretty good. I have written some reports in RS but never used a Crosstab Matrix. I cant seem to get the totals right.at the moment i am using the following query for my report:SELECT G.GesprekID, G.Starttijd, G.Eindtijd, R.Eindtoestand, R.ResultaatOptie, M.Voornaam, M.Achternaam, WT.aantaluurFROM Resultaat R LEFT JOIN ((( Gesprek G RIGHT JOIN CMS_MI_ReportParameters MIP ON (G.Starttijd BETWEEN MIP.DetailOverzichtMedewerker_BeginDatum AND MIP.DetailOverzichtMedewerker_EindDatum) ) INNER JOIN CBS_Medewerker M ON G.MedewerkerID = M.MedewerkerID) LEFT JOIN VIEW_CMS_MI_GewerkteUren WT ON G.MedewerkerID = WT.MedewerkerID) ON G.ResultaatID = R.ResultaatOptieIDWHERE G.GesprekID > 0ORDER BY G.MedewerkerID
It gives me all the information i need in my report. The problem is how to configure the Crosstab Matrix Object in the right manner. At the moment i have the following report:http://img457.imageshack.us/my.php?image=crosstable7hz.jpgif you match this with the report i designed in excel the other day there are only a few values missing. I would like to get a totals field for the numbers directly on the left, right next to the names (just above the darkblue totals field which is already there).Maybe a screenshot of the report @ design time clears things up: http://img20.imageshack.us/img20/2921/crosstableinrs8ec.jpgI also would like to have one single row total horizontaly. At the moment the total on the top-right repeats itsself for each column group. I would like to have this total only once instead of 4/5 times repeated (for each column group).Thanks in advance for your trouble!!