Selecting criteria in a Query

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

Guest

I am trying to select only certain data to appear in one of three queries I
have created. The main table houses all the student information. I want to
sort all the names into three different queries and am using the "Between
And" selection on last name (i.e Between "A" And "N"). The problem is any
names starting with A or N do not appear. I know I can change the N to an O,
but I can't get the "A" names. Is there a better way to do this??
 
Between "A" and "O" should work for you.

You could also use the following to get all names that begin with A to N

LIKE "[A-N]*"

--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
..
 
Back
Top