Hello All
What I am trying to do here is find the Average Score that all students got on a Final Exam that scored X amount on a practice Exam.
Exam 1: Format(DAvg("[MSGTPExam1]","MSGTP","[Exam1] =" & [Exam1]),"Percent")
Field - MSGTPExam1
Table - MSGTP
Now if I want to open up my parameters a bit - for example if the student got a score of 64% on the Practice exam - Instead of averaging all that received 64% I would like to average all that received 62%-66% (All that scored within 2% of their score)
Exam 1: Format(DAvg("[MSGTPExam1]","MSGTP","[Exam1] =" & Between [Exam1]-.02 And [Exam1]+.02),"Percent")
This does not work? Any other ideas to accomplish my wish?
Thanks
Rick