View Single Post
  #4  
Old January 23rd, 2006, 01:46 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Adding Multiple rows at a time

If you are saying that you are filling a table with "dummy" attendees, and
checking only those that actually attended, you'd be storing useless (and
potentially confusing) records.

Or did I misunderstand?

--
Regards

Jeff Boyce
Office/Access MVP

"Slider" wrote in message
ups.com...
Thanks Jeff

What I've actually ended up doing (after having another crack at it
this morning) is as follows.

User opens a form which allows them to pick a date, then clicks a
button which launches a macro.

The macro first runs an append table query which basically creates a
new entry in the attendance table for all possible attendees for that
date.

It then opens a form in a datasheet view that is based on a query
pulling out all the entries from the attendance table for that date.

The user is then able to use a checkbox to indicate present/not
present, and simply close down the form when they are finished. All
records are of course saved when they do this.

This approach certainly has some dissadvantages, especially in
presentation, but I'm working on those.

Do you see any glaring holes in this approach that I may have
overlooked?

Thanks