
Originally Posted by
jzwp11
Welcome to the forum!
All you would need to do is to create (and save) the query. When you need to see the data just run the query. Access will display the results in a basic datasheet view. There would be no need to make another table. You could also bind the query to a form. When you open the form, Access will automatically run the query and display the results in the form (you use the form to format the data the way you want).
It sounds like you will need an aggregate query
SELECT category, Count(category), Min(dateadded)
FROM yourtablename
GROUP BY category