R
Regan via AccessMonster.com
Hi i have a chart and i want to be able to change the order on the (y) axis
this is the query it is based on
PARAMETERS [forms]![filters]![txtcboXsecone] Integer, [forms]![filters]!
[txtcboxsectwo] integer;
SELECT pointsdata.NominalChn, pointsdata.Elev, pointsdata.Hal
FROM pointsdata
WHERE pointsdata.NominalChn= [forms]![filters]![txtcboXsecone] Or pointsdata.
NominalChn= [forms]![filters]![txtcboxsectwo];
this is the row source in the chart
TRANSFORM Sum(chndiff.Elev) AS SumOfElev
SELECT chndiff.Hal
FROM chndiff
GROUP BY chndiff.Hal
PIVOT chndiff.NominalChn;
What i want to do is customise the sort order of chndiffHal.
FELN
FLLN
CL1
TDLST1
LLRS
FERS
So my chart looks something like this:
3
2
1
FELN FLLN CL1 TDLST1 LLRS FERS
At the moment it looks like this
3
2
1
CL1 FELN FERS LLLN LLRS TDLST1
Any help would be appreciated, thanks
this is the query it is based on
PARAMETERS [forms]![filters]![txtcboXsecone] Integer, [forms]![filters]!
[txtcboxsectwo] integer;
SELECT pointsdata.NominalChn, pointsdata.Elev, pointsdata.Hal
FROM pointsdata
WHERE pointsdata.NominalChn= [forms]![filters]![txtcboXsecone] Or pointsdata.
NominalChn= [forms]![filters]![txtcboxsectwo];
this is the row source in the chart
TRANSFORM Sum(chndiff.Elev) AS SumOfElev
SELECT chndiff.Hal
FROM chndiff
GROUP BY chndiff.Hal
PIVOT chndiff.NominalChn;
What i want to do is customise the sort order of chndiffHal.
FELN
FLLN
CL1
TDLST1
LLRS
FERS
So my chart looks something like this:
3
2
1
FELN FLLN CL1 TDLST1 LLRS FERS
At the moment it looks like this
3
2
1
CL1 FELN FERS LLLN LLRS TDLST1
Any help would be appreciated, thanks