Access 2000. I have a report which contains a text box named Text81. In the Control Source property of this text box I have placed the following: =Count([Material]) This works fine and counts the number of line item entries on the form. And now I would like to change it to read only the number of line item entries where the Actual Quantity is > 0. I have tried these: =Count([Material]) where [Actual Quantity] > 0 and Select Count([Material]) as Text81 from ABS_Daily where ((([ABS_Daily].[Actual Quantity])>0)); neither of which work. Any suggestions please and thank you.