Need help sorting data...

P

Preston Pierce

I need to sort my data where the blank entries land at
the bottom of my list not the top. For some reason
access sees the blanks as a higher character than
an "A". Please help....
 
D

Dirk Goldgar

In the query that sorts the table, sort first by IsNull([YourFieldName]
descending, then by [YourFieldName] ascending. For example:

SELECT Table1.* FROM Table1
ORDER BY IsNull([Field1]) DESC , Table1.Field1;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top