Scores
Solved/Closed
R
-
Feb 26, 2010 at 06:47 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Mar 1, 2010 at 05:29 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Mar 1, 2010 at 05:29 AM
Related:
- Scores
- What is under scores - Guide
4 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Feb 26, 2010 at 08:03 AM
Feb 26, 2010 at 08:03 AM
Are you looking to covert the student answer from letter to a number or just want to grade. If you want letter to be converted to grade inself in the same cell, the you have to use macro. Other side you can use formulas which can do the grading for you on the same sheet but different column or just on a different sheet all together.
On the side note, arent you being harsh to give a choice of A-P :)
On the side note, arent you being harsh to give a choice of A-P :)
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Feb 26, 2010 at 01:31 PM
Feb 26, 2010 at 01:31 PM
Not knowing how sheet looks like and how much of the data is there
This is a formula approach
Lets say your sheet1 would look like this
On sheet 2
you can have
On cell A2
=IF(ISBLANK(Sheet1!A3), "", Sheet1!A3)
drag this formula down to the last student
on cell B3 enter
=IF(ISBLANK(Sheet1!B$1), "", IF(Sheet1!B3=Sheet1!B$1,1,0))
Drag this formula across all columns and rows to cover the question matrix
I am attaching a sample workbook
https://authentification.site/files/21153026/score.xls
Hope it helps
This is a formula approach
Lets say your sheet1 would look like this
A B C D 1 c a b 2 Ques 1 Ques 2 Ques 3 3 Student 1 a a b 4 Student 2 a d b 5 Student 3 c a b
On sheet 2
you can have
On cell A2
=IF(ISBLANK(Sheet1!A3), "", Sheet1!A3)
drag this formula down to the last student
on cell B3 enter
=IF(ISBLANK(Sheet1!B$1), "", IF(Sheet1!B3=Sheet1!B$1,1,0))
Drag this formula across all columns and rows to cover the question matrix
I am attaching a sample workbook
https://authentification.site/files/21153026/score.xls
Hope it helps
Thanks that's exactly what i want.
One more simple question for a beginner.
if I want to sum across a row e.g ...=(B3+C3+D3+E3)
is there a way of doing this so I don't have to enter each letter?
I thought =+(B3:E3) would but it is wrong.
thanks
again for your original guidance.
Can you suggest a good excel book for idiots book with good examples?
The microsoft excel book is a hard work.
regards
Richard
One more simple question for a beginner.
if I want to sum across a row e.g ...=(B3+C3+D3+E3)
is there a way of doing this so I don't have to enter each letter?
I thought =+(B3:E3) would but it is wrong.
thanks
again for your original guidance.
Can you suggest a good excel book for idiots book with good examples?
The microsoft excel book is a hard work.
regards
Richard
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Mar 1, 2010 at 05:19 AM
Mar 1, 2010 at 05:19 AM
sure
write =sum(A1:A100) to add values between cells A1 and A100 (both including)
write =sum(A1:A100) to add values between cells A1 and A100 (both including)
Hi thanks
but I meant across a row...A1 + B1 + C1.....etc rather than down a column.
thanks
R
but I meant across a row...A1 + B1 + C1.....etc rather than down a column.
thanks
R
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Mar 1, 2010 at 05:29 AM
Mar 1, 2010 at 05:29 AM
it is same concept
you can add across columns like
to add a1 b1 ... z1
=sum(a1:z1)
or even like
to add a1,b1 c1.. z1, a2 b2... z100
=sum(a1:z100)
you can add across columns like
to add a1 b1 ... z1
=sum(a1:z1)
or even like
to add a1,b1 c1.. z1, a2 b2... z100
=sum(a1:z100)