The screenshot shows the Publisher column is supposed to be sorted by Publisher by means of:
Private Sub Lbl_Publisher_Click()
Me.OrderBy = “Publisher, BookTitle”
Me.OrderByOn = True
End Sub
The screenshot shows the Publisher column is actually sorted by PublisherID (autonum). That explains why Apress is placed last.
Question:
How to sort the Publisher column by the Publisher, not PublisherID?
Publisher field is a Lookup field. It consists of 2 columns–PublisherID and Publisher. The 1st field, namely, PublisherID, is hidden.
Armstrong