If all you want is to be able to pick customers for the report without
keeping a permanent record of who was picked when, the yes, add a yes/no
field to your table to you can click the records you want. You can then
create a query where this field is True, and use is as the Record Source for
your report.
You probably want a button on your form to reset all boxes to Off again. If
so the event procedure would look like this:
Private Sub cmdResetAll_Click()
Dim strSql As String
If Me.Dirty Then Me.Dirty = False 'Save any changes first.
strSql = "UPDATE Customers SET IsPicked = False WHERE IsPicked =
True;"
dbEngine(0)(0).Execute strSql, dbFailOnError
End Sub
If you want to keep track of who was picked when, you will need another
table with fields like this:
CustomerID relates to the primary key of your Customers table.
PickDate date/time field, with Default Value set to: =Date()
You can add records to this table, and then create a query joining this and
the Customers table, with Criteria on the PickDate field to limit it to
those picked on a particular date.

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
>I want to search my tblCustomers for all customers in a specific state or
> city (that much I can do) and then "check off boxes" (?) of the ones I
[quoted text clipped - 12 lines]
> search. Any help on this would really, REALLY be appreciated.
> Thanks!
Neill Silva - 07 Oct 2005 13:20 GMT
Thank you for responding Allen. I think I understand now!? I'll give it a try
and reply later. Thanks again!
Neill
> If all you want is to be able to pick customers for the report without
> keeping a permanent record of who was picked when, the yes, add a yes/no
[quoted text clipped - 37 lines]
> > search. Any help on this would really, REALLY be appreciated.
> > Thanks!
Neil,
Along the lines of what you are trying to do, I have a calendar report
module that shows sales calls for any month you select in the calendar. I
could implement this in your database for you for a very reasonable fee. If
you are interested, contact me at my email address below and I will send you
a screen shot of the calendar report.

Signature
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
resource@pcdatasheet.com
www.pcdatasheet.com
>I want to search my tblCustomers for all customers in a specific state or
> city (that much I can do) and then "check off boxes" (?) of the ones I
[quoted text clipped - 12 lines]
> search. Any help on this would really, REALLY be appreciated.
> Thanks!