Jeff,
Here is the SQL statement. I had to make a new one but it is doing (or not
doing) the same thing.
-- SELECT CustomerT.CutArea, CustomerT.CutOrdNum, CustomerT.[2010 Status],
CustomerT.Cutwk1, CustomerT.Cutwk2
FROM CustomerT
WHERE (((CustomerT.[2010 Status]) Like "*Y*") AND ((CustomerT.Cutwk2) Is
Null))
ORDER BY CustomerT.CutArea, CustomerT.CutOrdNum;
What I need the query to do is sort
First on Area then on order Number.
What I mean by not sorting is, the query will not put the order number in
numerical order.
I am making route sheets for my employees and we have 17 different routes.
Then within each route there is an order number so the employee knows where
to go first and then down the list.
Area is a text field in the table and lookup. Data entered is: an, bf, bu,
cn. Again there are 17.
The order number is a number field: field size, Double, Format: General
Number.
Data entered is numbers 100 to 1000.
Not sure if I explained well, if not just ask. I am just really fustrated at
this time.
Lenee
Lenee said:
I have made a query and it will not sort one of my fields. I thought it was a
simple query but maybe not.
Field: Area, Sort Ascending
Field: OrderNumber, Sort Ascending
Field: Status, Criteria Like "*Y*"
Field: Week 1, Criteria Is Null
It will do everything except sort on the order number.