Hi.
> I import a large number of items and wish to see a breakout
> report of each item and the number of instances?
Try:
SELECT ItemName, COUNT(ItemName) AS NumItems
FROM MyTable
GROUP BY ItemName;
.. . . where ItemName is the name of your field, NumItems is the number of
occurrences, and MyTable is the name of the table.
HTH.
Gunny
See
http://www.QBuilt.com for all your database needs.
See
http://www.Access.QBuilt.com for Microsoft Access tips and tutorials.
http://www.Access.QBuilt.com/html/ex...ributors2.html for contact info.
"Ja" wrote:
> I import a list of records and wish to tally the number of occurrences for
> each imported name...I believe there is a way to collapse all of the
> duplicate entries and tally them.
> In other words I import a large number of items and wish to see a breakout
> report of each item and the number of instances????
>
> Any assistance would be much appreciated.