Hi all -
back again...Little problem. Huge frustration.
The first OrderBy works perfectly - the second does not. The fields have exactly the same parameters (in fact they are the same field located on different forms). If manually right click - I can Sort A-Z ... so if I can do that - then there should be nothing preventing a sort command from working, so why doesn't it work?
Private Sub BITSEA_New_Record_button_Click()
Me.OrderBy = "BITSEA_ID ASC"
Me.OrderByOn = True
DoCmd.GoToRecord , , acLast
DoCmd.Close acForm, "BITSEA_Add_New", acSaveYes
DoCmd.OpenForm "BITSEA"
DoCmd.GoToControl "BITSEA_ID"
Me.OrderBy = "BITSEA_ID ASC"
Me.OrderByOn = True
DoCmd.GoToRecord , , acLast
End Sub