Voter program

M

mike

looking at creating a db for a ballot box to allow teachers to vote on issues
(vs paper). main requirement is the user (a teacher) can only vote once
(need to limit/control access). is it possible to create user accts of some
sort in access?
 
M

mike

could i...have table of teachers, table of voting issues, and table to store
results but only limit each teacher in the list to one entry in the 3rd
table(vs user accts below)...or allow them to write (vote) as many times as
they like but querry report so it shows (counts) same user only once...?
 
F

Fred

Mike,

You're going to have to start with defining your voting procedures and rules
and confidentiality / access / verification rule requirements then design
your database to implement them. Those could make this a lot more
complicated.


But here's a "cart before the horse" structure thought

A table of Teachers, PK = TeacherID
A table of Issues, PK = IssueID

A table of instances of a teacher voting on an issue with at least the
following fields

TeacherID (FK)
IssueID (FK)
Result

And in that last table set it so the combination of the above 2 FK's must be
unique.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top