Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

save multiple events in one field

Status
Not open for further replies.

mxp346

MIS
Apr 27, 2002
50
US
I have a paper form where there is a list of events that can occur during a visit. The person can check off several of the events. Is there a way to make a form so that if there are several items checked they will all be stored into the same field? Or would I be better off doing it some other way were they would be stored in different fields or something else?
 
Hi MXP136,

Please elaborate on what you actually want.

Your phrases such as 'paper form' don't make sense.

Tell me in your words exactly what you want - e.g. I want to see user choices from the following options ... blah.. blah...blah displayed on a screen or printed to paper etc.

Regards,

Darrylle "Never argue with an idiot, he'll bring you down to his level - then beat you with experience."
 
MX, what you probably want is a child table to your main record with your event(s) stored:

Main : VisitDate
VisitPerson
etc etc etc

Child : VisitDate (Foreign key to Main
Event "Knocked on Door"
Checked YES

VisitDate Same Key
Event: "Said Hello"
Checked YES

and so on. Thus, you can either pre-populate your child table with all the events possible for a "visit", and set them to YES where they are checked off (or rather, ON) on the paper form, or just post the YES/TRUE events in the child record.

It's just a matter of design, and your particular business rules will dictate how you set it up. Get back if you have more questions.

Jim
How many of you believe in telekinesis? Raise my hand...
Another free Access forum:
More Access stuff at
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top