Custom Sort Order in Access

christy726

New Member
Joined
Nov 12, 2004
Messages
28
To sort data in the Reports Design View, I know we can use the "Sorting and Grouping" function where it can sort data in ascending or descending order. But what if I want to sort in a specific order?

For example, the field name is "Region". I have records showing "East", "North", "South", and "West". Is there a way that I can sort by "North", "South", "East", and "West" instead? If I use ascending order, it won't work.

Please let me know. Thanks for your help!
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Typically when I need a custom sort I add a sortOrder field to my table:

<CENTER><TABLE cellSpacing=0 align=center cellpadding=2px width=50% ><TR ><TD CLASS="AccTBMainLT" border-left=1px solid colSpan= 4 ><TABLE width="100%" align=left VALIGN="TOP" ><TR ><TD CLASS="AccTBInnerLT" align=Left >tblRegion : Table</TD><TD CLASS="AccTBInnerLT" align=right >Access 2002/XP</TD></TR></TABLE></TD></TR><TR ><TD CLASS="AccDataElemLT" align=left >regionId</TD><TD CLASS="AccDataElemLT" align=left >regionName</TD><TD CLASS="AccDataElemLT" align=left >sortOrder</TD></TR><TR ><TD CLASS="AccDataElemLT" >1</TD><TD CLASS="AccDataElemLT" >North</TD><TD CLASS="AccDataElemLT" >1</TD></TR><TR ><TD CLASS="AccDataElemLT" >2</TD><TD CLASS="AccDataElemLT" >East</TD><TD CLASS="AccDataElemLT" >3</TD></TR><TR ><TD CLASS="AccDataElemLT" >3</TD><TD CLASS="AccDataElemLT" >South</TD><TD CLASS="AccDataElemLT" >2</TD></TR><TR ><TD CLASS="AccDataElemLT" >4</TD><TD CLASS="AccDataElemLT" >West</TD><TD CLASS="AccDataElemLT" >4</TD></TR><TR ><TD CLASS="tpkrow" colSpan = 3 ><CENTER><font size = 1>Access HTML Add-in provided by theprimarykey.com</font></CENTER></TD></TR></TABLE></CENTER>


alternatively, since it's only four values you could also use an iif function to get it to sort correctly:

<CENTER><TABLE cellSpacing=0 align=center cellpadding=2px width=50% ><TR ><TD CLASS="AccTBMain" border-left=1px solid colSpan= 2 ><TABLE width="100%" align=left VALIGN="TOP" ><TR ><TD CLASS="AccTBInner" align=Left ><font color="White">Query1 : Select Query</font></TD><TD CLASS="AccTBInner" align=right >Access 2002/XP</TD></TR></TABLE></TD></TR><TR ><TD CLASS="AccDataElem" colSpan= 2 >SELECT
tblRegion.regionName

FROM
tblRegion
ORDER BY
IIf([regionName]="North",1,IIf([regionName]="South",2,IIf([regionName]="East",3,4)));
</TD></TR><TR ><TD CLASS="AccHDRLeftElem" >
</TD><TD CLASS="AccHDRMain" align=left >regionName</TD></TR><TR ><TD ID="currRec" CLASS="AccHDRLeftElem" >
</TD><TD CLASS="AccDataElem" >North</TD></TR><TR ><TD ID="currRec" CLASS="AccHDRLeftElem" >
</TD><TD CLASS="AccDataElem" >South</TD></TR><TR ><TD ID="currRec" CLASS="AccHDRLeftElem" >
</TD><TD CLASS="AccDataElem" >East</TD></TR><TR ><TD ID="currRec" CLASS="AccHDRLeftElem" >
</TD><TD CLASS="AccDataElem" >West</TD></TR><TR ><TD ID="IE" CLASS="AccIEOnlyMain" colSpan= 2 ><TABLE width="100%" align=left VALIGN="TOP" ><TR ><TD CLASS="AccIEOnlyInnerRight" > Record: </TD><TD CLASS="AccButton" >
</TD><TD CLASS="AccIEOnlyData" > 1 </TD><TD CLASS="AccButton" >
</TD><TD CLASS="AccIEOnlyInnerLeft" > of 4</TD></TR></TABLE></TD></TR><TR ><TD CLASS="AccIEOnlyMain" colSpan= 2 ><TABLE cellSpacing=0 cellPadding=0 width="100%" align=left VALIGN="TOP" ><TR ><TD ID="Data150402248" CLASS="AccInfoBarInnerRight" >Query1</TD><TD ID="Info150402248" CLASS="AccInfoBarData" >Select Query, Record Count : 4</TD></TR></TABLE></TD></TR><TR ><TD CLASS="tpkrow" colSpan = 2 ><CENTER><font size = 1>Access HTML Add-in provided by theprimarykey.com</font></CENTER></TD></TR></TABLE></CENTER>

hth,
Giacomo
 
Upvote 0

Forum statistics

Threads
1,215,018
Messages
6,122,703
Members
449,093
Latest member
Mnur

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top