Count records from form where txtbox="ABC"

E

Emanuel Violante

Hi everyone,

I would like to have the total count of records from my form where in
Field1, the value is "ABC" for exemple
--
Thanks,

Sorry if my english isn''t correct, but I''m from Potugal ;)

Emanuel Violante Galeano
 
F

fredg

Hi everyone,

I would like to have the total count of records from my form where in
Field1, the value is "ABC" for exemple

Add an unbound text control to the form.
Set it's control source to:
=Abs(Sum([Field1]='ABC'"))
 
E

Emanuel Violante

That solved my problem just fine

Thank you verry much ;)

Sorry if my english isn''t correct, but I''m from Potugal ;)

Emanuel Violante Galeano


fredg said:
Hi everyone,

I would like to have the total count of records from my form where in
Field1, the value is "ABC" for exemple

Add an unbound text control to the form.
Set it's control source to:
=Abs(Sum([Field1]='ABC'"))
 

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

Top