D
Daedalus
Guest
Sorry for the bunch of questions here, and I dont know if this is the right forum to post it, but as I am designing all this in a form, I figured this would be the place. I am a total newbie to Access, so I appologize if these questions seem simple, but I am unsure how to do this.
I am designing a form. It is populating one table:
Table1_FirstName
Table1_LastName
Table1_Item1
...
Table1_Item30
Table1_Number_Correct
Table2_Item_Number
Table2_Item_Name
Table2_Correct_Answer
--------------
What I am trying to do is design a form where the user enters the names for Table 1, and the 30 items. When the items are entered in, they will be checked acinst the correct answer in Table2, and I want the letter to be changed to displayed as RED (I think this will take a query and a formatting change. I am unsure how to do this.)
Also, and more importantly:
When the user is done entering the whole record (a total of 32 fields), I want to check the total number of "correct" answers that were entered, and store this in Table1_Number_Correct.
In psuedocode, I am guessing this would be something like:
For x = 1 to 30
If Table1_Item_x = Table2_Item_Number(x).Correct_Answer
Then ++Number_Correct
Table1_Number_Correct = Number_Correct
Would this be done in VB script (which I am unfamiliar with)?
Has anyone tried this before? Any examples?
Any help with these two problems would be greatly appreciated.
Thanks!
I am designing a form. It is populating one table:
Table1_FirstName
Table1_LastName
Table1_Item1
...
Table1_Item30
Table1_Number_Correct
Table2_Item_Number
Table2_Item_Name
Table2_Correct_Answer
--------------
What I am trying to do is design a form where the user enters the names for Table 1, and the 30 items. When the items are entered in, they will be checked acinst the correct answer in Table2, and I want the letter to be changed to displayed as RED (I think this will take a query and a formatting change. I am unsure how to do this.)
Also, and more importantly:
When the user is done entering the whole record (a total of 32 fields), I want to check the total number of "correct" answers that were entered, and store this in Table1_Number_Correct.
In psuedocode, I am guessing this would be something like:
For x = 1 to 30
If Table1_Item_x = Table2_Item_Number(x).Correct_Answer
Then ++Number_Correct
Table1_Number_Correct = Number_Correct
Would this be done in VB script (which I am unfamiliar with)?
Has anyone tried this before? Any examples?
Any help with these two problems would be greatly appreciated.
Thanks!