Hi Tandemrider,
Try the following query in the sample Northwind.mdb database. Create a new
query. Dismiss the Add Tables dialog without adding any tables. In query
design view, click on View > SQL View. You should see the word SELECT
highlighted. Copy the following SQL statement (Ctrl C) and paste it into the
SQL view (Ctrl V), replacing the SELECT keyword:
SELECT Left$([LastName],1) AS Letter,
Count(Left$([LastName],1)) AS [Number]
FROM Employees
GROUP BY Left$([LastName],1)
ORDER BY Left$([LastName],1);
You can then switch back to the more familiar design view, if you wish, by
clicking on View > Design View. Run the query.
Tom
http://www.access.qbuilt.com/html/expert_contributors.html
http://www.access.qbuilt.com/html/search.html
__________________________________________