sort in one column then in another at the same time

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

Guest

How can I sort info in one column then in another without changing the sort I
first made? For example: I want to sort a "last names" column and get all
the Smith's in order then sort a "first names" column so I can get all the
Smith's in order by last AND first name. How do I do this?
 
How can I sort info in one column then in another without changing the sort I
first made? For example: I want to sort a "last names" column and get all
the Smith's in order then sort a "first names" column so I can get all the
Smith's in order by last AND first name. How do I do this?

Access sorts fields in left to right order, so:
Order By TableName.LastName, TableName.FirstName
 
all_praise said:
How can I sort info in one column then in another without changing the
sort I > first made? For example: I want to sort a "last names" column
and get all
the Smith's in order then sort a "first names" column so I can get all the
Smith's in order by last AND first name. How do I do this?


Move the lastname column to the left of the firstname column.

Then select both columns, right click in the columns, select Sort Ascending.


--
 
Here's another way: At the top of the screen, click on "Records", then
"filter", then on "advance filter/sort". A box will pop up that will allow
you to choose what fields you want sorted, in what order, and if you want
ascending or decending. After you choose the fields and orders, click on
"Filter" at the top of the filter pop up window, then "Apply filter/sort".
 

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

Similar Threads

Windows 10 How to sort an index created in Word 2013 0
Excel Comparing two columns 1
Sorting Alphabetically and by date 3
sorts 2
Matching Names 5
Sort by number of unique entries in a datafield 3
combine info into 1
Advanced Sort 2

Back
Top