moderatelyclueless
New member
- Local time
 - Yesterday, 19:13
 
- Joined
 - Dec 24, 2014
 
- Messages
 - 7
 
I'm trying to create a program to input student attendance. The interface I'm going for is an Excel-looking spreadsheet with:
 - Columns as weekdays in a given month
 - Rows as all students
 - Cells as the attendance code (e.g., A for absent) for that day/student
 
- Students Table with StudentID, StudentName, DateStarted, and DateEnded.
 - AttendanceCode with AttCodeID, AttCode (the letter, A), and AttText (the word, Absent)
 - AttendanceTable with StudentID, AttDate, and AttCodeID
- My Primary Key is the combined StudentID/AttDate
 
 
- I set up relationships with the ID vars in the main tables linked to the ID vars in the AttendanceTable; is that right?
 - Do I even need an AttCodeID if all my AttCodes are unique?
 - If my overall set-up is correct, how do I make a form that looks like a simplified version of the picture I posted-- all student names as rows, all dates in July as dates, and all the cells inside as entries in AttendanceTable?