counting data from an Access database

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

Guest

I've successfully been able to retreive Access data and bring it into excel
with the help of postings from this website. I wanted to see if someone
could provide some code or insights that could help me count specific access
records, instead of retreiving them. Is this possible?

any help would be appreciated
 
Something like:

select count(t.*) from tablename t
select count(t.*) from tablename t where t.fieldname = "whatever"
 

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

Back
Top