Count

J

John

HI,
How do I count the number of records returned in a query and then display
the count on a form textbox?

Regards

John
 
D

Duane Hookom

The simplest solution might be to use a text box with a control source like:
=DCount("*", "Your Query Name")
 
Top