Thanks Douglas I added a field at the start and it seem to do the trick
Expr1: [Cb7] Is Not Null, it gave me a -1 on info in Cb7 and then I did
a ascending on Expr1 and on Cb7, Bingo
Have another problem, I have another query that I want to sort by
numbers I have a Value Field 1;2;3;4;
but on my sort I am getting
1
12
2
3
33
4
Any Help Thanx Bob
Or if it really is blanks, and not nulls,
SELECT SomeTable.*
FROM SomeTable
ORDER BY IIf(Trim(Len([SomeColumn] & " ")) = 0, 1, 0), SomeColumn;
--
Doug Steele, Microsoft Access MVP
(no private e-mails, please)
message SELECT SomeTable.*
FROM SomeTable
ORDER BY [SomeColumn] Is Null, SomeColumn;
Where 'SomeTable is the name of your table and 'SomeColumn' is the
name of the column on which you want to sort.
--
Brendan Reynolds
Access MVP
In a Ascending order on a query how can I get the blanks to come
last, now its ordering blanks first then a,b,c,...Thanks for your
help...Bob