sort descending??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using the following code to sort on multiple buttons on my form:

Me.OrderBy = "fieldname"
Me.OrderByOn = True


What do I add to sort in descending order??

Thanks!
 
paula said:
I am using the following code to sort on multiple buttons on my form:

Me.OrderBy = "fieldname"
Me.OrderByOn = True


What do I add to sort in descending order??

Thanks!

Me.OrderBy = "fieldname desc"
Me.OrderByOn = True
 

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

Back
Top