B
Ben Pelech
I am trying to find the easiest way to make a report or something that
resembles an excel spreadsheet. The closest thing I have found is a crosstab
query. There are 2 things that I cannot get it to do. #1 I cannot format it
to use a date range parameter and # 2 I need to count the total contact type
in the rows and the total count of dates in the columns at the bottom. Can
this be done? Any help would be greatly appreciated. Below is the SQL of my
crosstab
TRANSFORM Count([CountOfType of Contact])
SELECT [Type of Contact], Count([CountOfType of Contact]) AS [Total Of
CountOfType of Contact]
FROM QuryAllContactsTest
GROUP BY [Type of Contact]
PIVOT Format([Date],"Short Date");
Thank you very much
Ben
resembles an excel spreadsheet. The closest thing I have found is a crosstab
query. There are 2 things that I cannot get it to do. #1 I cannot format it
to use a date range parameter and # 2 I need to count the total contact type
in the rows and the total count of dates in the columns at the bottom. Can
this be done? Any help would be greatly appreciated. Below is the SQL of my
crosstab
TRANSFORM Count([CountOfType of Contact])
SELECT [Type of Contact], Count([CountOfType of Contact]) AS [Total Of
CountOfType of Contact]
FROM QuryAllContactsTest
GROUP BY [Type of Contact]
PIVOT Format([Date],"Short Date");
Thank you very much
Ben