Hello,
This should be a simple problem.
I have a continuous form that I want to be able to open sorted by its primary key (Autonumber, long) ascending.
I have the underlying table sorted by the primary key ascending.
I have the "order by" property in the form's property sheet set to the string name of the primary key and the "order by on load" property set to "Yes".
For good measure, I also have the VBA instructions Me.OrderBy = "PK" and Me.OrderByOn = True in the form's OnLoad event.
Nevertheless, the form opens sorted by the primary key in descending order.
Any ideas would be appreciated.