Hello All
I have a form based on a table which is currently sorting itself by an alphanumeric text field called "Query_Code".
The sorting order is currently in ascending order, thus it sorts empty data points then by the "Query_Code"
eg
[Empty]
[Empty]
[Empty]
[Empty]
QU000001
QU000002
QU000005
QU000123
When I assign a "Query_Code" to a record it automatically resorts it.
However, what I actually want is to sort the Records as follows
QU000001
QU000002
QU000005
QU000123
[Empty]
[Empty]
[Empty]
[Empty]
I thought an Me.OrderBy function but I couldn't get my head round it. Since if I sorted the records in descending order it would be
QU000123
QU000005
QU000002
QU000001
[Empty]
[Empty]
[Empty]
[Empty]
Hope someone can help
Thanks in advance
Mav
I have a form based on a table which is currently sorting itself by an alphanumeric text field called "Query_Code".
The sorting order is currently in ascending order, thus it sorts empty data points then by the "Query_Code"
eg
[Empty]
[Empty]
[Empty]
[Empty]
QU000001
QU000002
QU000005
QU000123
When I assign a "Query_Code" to a record it automatically resorts it.
However, what I actually want is to sort the Records as follows
QU000001
QU000002
QU000005
QU000123
[Empty]
[Empty]
[Empty]
[Empty]
I thought an Me.OrderBy function but I couldn't get my head round it. Since if I sorted the records in descending order it would be
QU000123
QU000005
QU000002
QU000001
[Empty]
[Empty]
[Empty]
[Empty]
Hope someone can help
Thanks in advance
Mav