On Fri, 28 Jan 2005 10:49:02 -0800, "Miss Ann" <Miss
I am keep attendance records and I WANT TO INPUT THE DATA AND GET A TOTAL AS
i GO
Please watch your caps lock key. All caps is hard to read.
Try using a Form to enter your attendance records; without knowing
anything whatsoever about your table structure or what it is that you
want totaled I can't be specific, but you can put textboxes on the
Form (or Subform) footer with control sources such as
=Count(*)
to count the number of records, or
=Sum([fieldname])
to sum the numeric values in a field.
John W. Vinson[MVP]