Yes separated by commas --- -- since it'll help things I can modify it
to the proper design? Then I wouldn't have to wrestle with a way to get
something good out of a bad design.
GOOD thought. Yes, if you're going to do this in Access, work with
Access as it is designed rather than frustrating yourself by
struggling with a bad structure!
start date, start time, start month, start year, end date, end time,
end month, end year, total time, total points, event1, event2, event3,
participants (123, 287, 289, 266)
Quite a few problems here!
I'd suggest reading some of the Database Design 101 links at Jeff
Conrad's resources page:
http://home.bendbroadband.com/conradsystems/accessjunkie/resources.html
For one thing, repeating fields like Event1, Event2, Event3 should
CERTAINLY be in a different table; for another, Access Date/Time
fields store the year, month, day, and time to the second all in one
field so it's neither necessary nor appropriate to have separate
fields for each. Does a StartTime refer to an event? or what Entity
(real-life person, thing, or event) is represented by this table?
Might Event1 and Event2 have different participants, or are they all
the same for a given record?
I'm not sure if this is sufficient - I can send you a smaller version
of the file if you want.
Only if you want to set up a consulting arrangement. I volunteer my
time here for free, but fixing up databases and writing new ones is
what I do for a living.
I'd like to end up with either a report within Access or export it to
Excel for the hard copy.
Access has a very capable report generator.
The report should have individual participants in the first column
followed by the total points for each event in the next columns.
Also - I'd like a Count of one of the events also for each participant.
Possible??? thanks
Possible, even easy - IF you start with a properly designed set of
tables. Nightmarish if you start with a non-normalized, repeating
field, non-atomic spreadsheet!
Assuming that the Entities you're trying to model are Events,
Attendees, and Attendance, then I'd suggest tables like
Events
EventID <Primary Key>
EventStart Date/Time
EventEnd Date/Time
EventName
Points <assuming an event has a defined point value>
<other fields about the event as a whole>
People
PersonID
LastName
FirstName
<other appropriate biographical data>
Attendees
EventID <link to Events>
PersonID <link to People>
<any information about this person with regard to this event, e.g.
Role = Chair, Presenter, ...>
John W. Vinson[MVP]