i'm thinking that's not going to work, but i'm not clear on what your table
structures. is your source table multiple records, with one ID field and one
Yes/No field? and does your "other" table have the same structure? and do
you want to append only the checkmarked records from the source table into
the other table? and then reset all the source table records to "unchecked"?
if so, your append query would be something like:
INSERT INTO OtherTableName ( CheckBoxField, ItemID, AddlField )
SELECT CheckboxField, ItemID, AddlField
FROM SourceTableName
WHERE SourceTableName.CheckboxField = True;
your update query to reset the source table records would be something like:
UPDATE SourceTableName SET CheckboxField = False;
hth
> Answered my own question (I think):
>
[quoted text clipped - 16 lines]
> >
> > Steve
Stephen Glynn - 30 May 2004 15:56 GMT
Sorry, I'd not made myself clear. I was trying not to have a yes/no
field in the underlying table from which I was taking my values.
That's because I need to drop the check boxes individually all over the
form. As you'll see from the other thread ("Yes/No boxes in forms" I'm
having trouble doing it in VB using the tag property.
Steve
> i'm thinking that's not going to work, but i'm not clear on what your table
> structures. is your source table multiple records, with one ID field and one
[quoted text clipped - 34 lines]
>>>
>>>Steve