Multiple choice quiz grading (true +1p, false -0,5p, blank +0p)

lauriten

New Member
Joined
Apr 5, 2011
Messages
1
Hello,

my problem is following:

I have a quiz with 40 questions and with only 1 correct answer for each question. My students will submit their answers on paper and I would like to input them into excel in order to produce statistical data swiftly. I am unsure about implementing this, because scoring on answers varies:

  • Correct answer +1p
  • False answer -0,5p
  • Blank answer +0p
This is my initial plan:

excel.png


Which formula or formulas should I use here? Currently there is no formula for the points column as I just wrote in the scores to demonstrate my problem. Any help is appreciated!

Br,

-lt
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
By False answer, I am assuming you mean incorrect answer:

Excel Workbook
ABCDEFGHIJKLM
1
2Correct AnswersStudents Answers
3
4ABCDABCDPoints
51x1x1
62x20
73x3x-0.5
Sheet1
 
Upvote 0
Welcome to the Board!

Maybe something like this:

=IF(COUNTA(I5:L5)=0,0,IF(MATCH("x",C5:F5)=MATCH("x",I5:L5),1,IF(MATCH("x",C5:F5)<>MATCH("x",I5:L5),-0.5)))

HTH,
 
Upvote 0

Forum statistics

Threads
1,214,812
Messages
6,121,702
Members
449,048
Latest member
81jamesacct

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top