Hi Troix,
When you write: ....but I need that number to appear in the form AND the table under "Score Total" you are unintentionally looking to create problems you don't want...
Basic rule in databases is to only enter a datum once.
Sooo, if say:
score1 = 1
score2 = 1
score3 = 1
Total score does not need to be recorded, you already know it - 3. It is the sum of the individual scores. I.E. the total is implicit in the data you have already entered and you should not re-enter it.
Instead, when you want to view or report the total, whether on your data entry form, or on a report, use an unbound textbox with a recordsource like =[score1]+[score2]+[score3]+ etc etc
Perhaps better yet go to something like =nz([score1],0)+ nz([score2],0)+ nz([score3],0)+ nz([score4],0) .....
The nz will get rid of any "nulls" that might goof up your sums - it makes your totalling expression just see the nulls as zeros.
Best,
C
C