On 30 Jun 2005 08:27:04 -0700,
morgan.mark@att.net wrote:
[color=blue]
> I am not an expert at access and I need a little help with a form. I
> have a form that is linked to a table with address information. My form
> has a checkbox linked to a field in the database to show when an
> address has been gone through and confirmed. I would like to have a box
> on the form that shows how many records have been checked and have "-1"
> in the table. I don't know how to do this and I asked a consultant that
> helps me from time to time and he said that it was complicated and
> would take almost a day to complete.
> I didn't think that it sounded like a difficult think to do and I
> thought I would ask people who know more than I do. Thanks for any help.[/color]
Add an unbound control to the form.
Set it's Control source to:
=ABS(SUM([CheckBoxName]))
Also code the Check Box AfterUpdate event:
Me.Refresh
so that any changes are immediately shown in the control.
Almost a day to do, huh!!!
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.