Sort ascending with null values last

IfButOnly

Registered User.
Local time
Today, 18:38
Joined
Sep 3, 2002
Messages
236
I have a continuous form in a subform with a number of fields including Member & result which I sort by clicking on the column label.

What I want to achieve is when I sort on result it will show completed results first (in ascending order) followed by members whose results haven't been entered yet.
eg
Member Result
Fred 66
John 69
Alan
Brian
....

Any suggestions would be welcome... Thanks
 
In the Record Source of the continuous form, you can use a query with an Order By clause like this:-

SELECT Member, Result FROM [TableName] ORDER BY IIf(IsNull(Result),1,0);

.
 
Last edited:
Jon,
That was great mate. Had to change it a bit as I wanted to sort by what results I had, but figured that out and it works great.

I used:
" ORDER By IIf(IsNull(" & gstrSortOrder & "), 200, " & gstrSortOrder & ")"
where 200 is a value higher than any result.

Thanks a lot ... Peter
 

Users who are viewing this thread

Back
Top Bottom