Count Text

  • Thread starter Thread starter JT
  • Start date Start date
J

JT

I would like to count how many times Pass is enter in the
results colum. Can some help me with it.
 
Wow! You sure gave us a lot of clues on what your query/table/fields look like.

PERHAPS something like:

Select Abs(Sum(FieldA = "PASS"))
FROM YourTable

Or even simpler
Select Count(FieldA) as CountField
FROM YourTable
WHERE FieldA = "Pass"

Or
DCount("FieldA","YourTable","FieldA=""Pass""")

Without a little more detail on what you are trying to do, the above is a guess.
 

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