J
James
Ok, I have a query that requests a user enter in a date such as 2/20/2007.
It then looks up some data, I then use this data in the following crosstab:
TRANSFORM Sum([qry_between].[TotalCharges]) AS [Total For Period]
SELECT [qry_between].[Sub Level A Name] AS Branch,
Count([qry_between].[TotalCharges]) AS [Number Of Phones],
Avg([qry_between].[TotalCharges]) AS [Average Per Phone]
FROM qry_between
GROUP BY [qry_between].[Sub Level A Name]
PIVOT Format([Invoice Date],"mmm") IN ("HELP HERE");
Right now everything works great, expect I get the heading HELP HERE, I want
this to Display the name of the month that the user imputted to begin with
(ie Febuary in this example)
How would I go about doing this?
Thanks
It then looks up some data, I then use this data in the following crosstab:
TRANSFORM Sum([qry_between].[TotalCharges]) AS [Total For Period]
SELECT [qry_between].[Sub Level A Name] AS Branch,
Count([qry_between].[TotalCharges]) AS [Number Of Phones],
Avg([qry_between].[TotalCharges]) AS [Average Per Phone]
FROM qry_between
GROUP BY [qry_between].[Sub Level A Name]
PIVOT Format([Invoice Date],"mmm") IN ("HELP HERE");
Right now everything works great, expect I get the heading HELP HERE, I want
this to Display the name of the month that the user imputted to begin with
(ie Febuary in this example)
How would I go about doing this?
Thanks