Access 97

  • Thread starter Thread starter Bruce
  • Start date Start date
B

Bruce

I have a Field on a Form which contains numbers Null through 1 to 9. I need
a count of only the number 3. How can this be done the Field name is Action.


Best Wishes
Bruce
( Illegitimi non carborundum est )
 
I have a Field on a Form which contains numbers Null through 1 to 9. I need
a count of only the number 3. How can this be done the Field name is Action.


Best Wishes
Bruce
( Illegitimi non carborundum est )

SELECT Count(*)
FROM tablename
WHERE [Action] = 3;

John W. Vinson[MVP]
 

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

Similar Threads

Security 1
Office 97 1
Check Boxes 1
Office 97 1
Access 97 1
File Size 3
Validate the number of checkboxes that can be true 0
Convert True (-1) or False (0) to a calculable number (1) or (0) 4

Back
Top