Bass71
MIS
- Jun 21, 2001
- 79
I have created a crosstab query using the recordset 'month' as the pivot recordset. However, the results of the crosstab query show the new month fields in alphabetical order, not month order--reading left to right. There is a parameter that asks the user to key in a reference month which yields a four month output. So, the months from the resulting query will vary.
Is there anyway to solve this layout issue?
Here is the SQL view of the crosstab... Thanks for your help!!
PARAMETERS [Enter Review Month/Year] Text;
TRANSFORM Sum(Query1.[SumOfSumOfPrincipal Cash]) AS TheValue
SELECT Query1.TAS, Query1.[Account Title], Query1.[Relationship Name], Query1.Group, Query1.[Date Opened], Query1.[First day Activity], Query1.[Dollar Volume]
FROM Query1
GROUP BY Query1.TAS, Query1.[Account Title], Query1.[Relationship Name], Query1.Group, Query1.[Date Opened], Query1.[First day Activity], Query1.[Dollar Volume]
PIVOT Query1.Month;
Is there anyway to solve this layout issue?
Here is the SQL view of the crosstab... Thanks for your help!!
PARAMETERS [Enter Review Month/Year] Text;
TRANSFORM Sum(Query1.[SumOfSumOfPrincipal Cash]) AS TheValue
SELECT Query1.TAS, Query1.[Account Title], Query1.[Relationship Name], Query1.Group, Query1.[Date Opened], Query1.[First day Activity], Query1.[Dollar Volume]
FROM Query1
GROUP BY Query1.TAS, Query1.[Account Title], Query1.[Relationship Name], Query1.Group, Query1.[Date Opened], Query1.[First day Activity], Query1.[Dollar Volume]
PIVOT Query1.Month;