Access 97

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 )
 
J

John Vinson

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
Check Boxes 1
Security 0
Office 97 1
Access 97 1
Office 97 1
File Size 3
Finding the proper style field and the numbered paragraph value within the style 0

Top