I am trying to offer users a combo-box to choose a month for which to report data. I use this SQL:
[red]
SELECT DISTINCT [tblRepData].[Month] FROM tblRepData;
[/red]
This pulls the months, but it sorts them alphabetically in the list. I want them to display in order (Jan,Feb,Mar,etc)
Can anyone help me out? Thanks.
[red]
SELECT DISTINCT [tblRepData].[Month] FROM tblRepData;
[/red]
This pulls the months, but it sorts them alphabetically in the list. I want them to display in order (Jan,Feb,Mar,etc)
Can anyone help me out? Thanks.