Report that displays number of records in queries

  • Thread starter Thread starter rhia.perkins
  • Start date Start date
R

rhia.perkins

Hi there,

I have a database I've set up that has a number of queries that filter
the data by two (or more) checkboxes. I'd like to set up some kind of
summary report that simply indicates how many records are in each of
those queries. I feel like this should be simple, but I'm not coming up
with any solutions that work...

Any suggestions?

Thanks!
 
Hi there,

I have a database I've set up that has a number of queries that filter
the data by two (or more) checkboxes. I'd like to set up some kind of
summary report that simply indicates how many records are in each of
those queries. I feel like this should be simple, but I'm not coming up
with any solutions that work...

Any suggestions?

Thanks!


Since this is a Reports newsgroup, you can count how many records are
returned in a query by using an unbound control in a report:
=DCount("*","QueryName")
 
Back
Top