Im a teacher and I must prepare recruitment system .
So
My future students (candidates) have any marks from previous school. My school give for their marks points. Who have the most will be future students my school.
So I have to change marks to points. Teacher who will be work with my aplication will be write only marks and system convert it to points.
Good explantion ?
Candidate have three marks : 5,4,3 . Three subjects and three marks. My school give for 5 - 10 points, for 4 - 8 points and for 3 - 6 points. How to convert/count/solve total points for each of students.
OK ?
Candidate have three marks : 5,4,3 . Three subjects and three marks. My school give for 5 - 10 points, for 4 - 8 points and for 3 - 6 points. How to convert/count/solve total points for each of students.
OK ?
Butek
When I read MajP's reply, I thought he understood what you meant perfectly.
Now you've mentioned grades for the first time with a 10x multiplying factor.
So I'm unclear again and am going to drop out of this thread.
Good luck with finding a solution.
create another field on the table you want to update (say Point).
then you only need to use update query (if you already made the table i posted a while ago).
Code:
update table1 inner join table2 on table1.markfield=table2.mark set table1.point=table1.mark*table2.multiplier;
You want to say that you are indicating the marks to point.
e.g., if the student get 83marks out of 100 and you want to indicate that marks into point. right.
if yes, then
first of all you should know that how much marks is equal to point. say 80-100 marks is equal to 10, 60-80 =8, 40-60=6 and so on......
if you wanted to say above one then you can convert marks into points by using queries...