You might want to start by studying a bit on normalization. There are a
couple samples that might get you started at
http://www.rogersaccesslibrary.com/OtherLibraries.asp#Hookom,Duane. Look at
both "At Your Survey" and "Employee Evaluation".
Each individual score should create its own record in your table. Don't
create 7 fields for 7 areas or 7 fields for 7 periods. If you do that, you
might want to stick with Excel.
I would expect your table of scores might look something like:
tblScores
===============
scoScoID autonumber primary key
scoDate date of scoring
scoStudentID
scoPeriodID
scoAreaID
scoScore value of score
This could be normalized to remove the date, student, and period to place in
a parent table.
tblScoreEvents
==============
sceScEID autonumber primary key
sceDate
sceStudentID
scePeriodID
sceEvaluator
Then replace the Date, Student, and Period fields from the previous table
with a field [scoScEID] to store the sceScEID value from tblScoreEvents.

Signature
Duane Hookom
Microsoft Access MVP
> I am trying to create a form for my teachers to use to keep track of student
> behavior. The form has 7 periods (one for each class period) and 7 areas in
[quoted text clipped - 12 lines]
> Thanks
> D. Dobbs