Can My Book Collection be sorted alphabetically by TITLE?

G

Guest

I see options in Access to sort My Book Collection by subject matter or
author, but how can I sort the database BY TITLE??

Thank you in advance for any help you have to offer.
 
G

Graham Mandeno

I'm assuming you have a database that has been built from some kind of
sample or template. You really need to give more information, but here's a
guess that might get you going.

Say you have an option group on your form, named "opgSortBy". It had two
buttons: "Subject" (value 1) and "Author" (value 2). You need to add a
third button, "Title" (value 3).

Then find the code associated with changing the value of the option group -
it's probably in the AfterUpdate event procedure.

Maybe it looks something like this:

Private Sub opgSortBy_AfterUpdate()
Select Case opgSortBy
Case 1: Me.OrderBy = "Subject"
Case 2: Me.OrderBy = "Author"
End Select
Me.OrderByOn = True
End Sub

You need to add a third "Case" line:
Case 3: Me.OrderBy = "Title"
 
G

Guest

Thank you, Mr. Mandeno! I GOT IT! and I apologize for failing to provide
complete information.

JacE

Graham Mandeno said:
I'm assuming you have a database that has been built from some kind of
sample or template. You really need to give more information, but here's a
guess that might get you going.

Say you have an option group on your form, named "opgSortBy". It had two
buttons: "Subject" (value 1) and "Author" (value 2). You need to add a
third button, "Title" (value 3).

Then find the code associated with changing the value of the option group -
it's probably in the AfterUpdate event procedure.

Maybe it looks something like this:

Private Sub opgSortBy_AfterUpdate()
Select Case opgSortBy
Case 1: Me.OrderBy = "Subject"
Case 2: Me.OrderBy = "Author"
End Select
Me.OrderByOn = True
End Sub

You need to add a third "Case" line:
Case 3: Me.OrderBy = "Title"
--
Good Luck!

Graham Mandeno [Access MVP]
Auckland, New Zealand

jw said:
I see options in Access to sort My Book Collection by subject matter or
author, but how can I sort the database BY TITLE??

Thank you in advance for any help you have to offer.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top