PC Review


Reply
Thread Tools Rate Thread

Average a group of tests for grade, some tests not taken by all.

 
 
=?Utf-8?B?U2NhZmlkZWw=?=
Guest
Posts: n/a
 
      17th Aug 2005
I have a sheet with (L to R) student name, number right each test, total
right, average percentage, letter grade. After the names the row has
question number at bottom which are added up at the end of the row. Total
right are divided by total questions. The problem arises when a student does
not take a test. The blank cell is, in effect, like a zero on a test, as
that student's total is still divided by total questions, giving the wrong
grade (see Fred, who missed the second test). Sorry for the long length.
John 10 9 12 31 97% A
Fred 10 10 20 63% F
Total10 10 12 32 100%

 
Reply With Quote
 
 
 
 
Domenic
Guest
Posts: n/a
 
      17th Aug 2005
Assuming that M1:P2 contains student test scores, and M3:P3 contains the
total score for each test, try...

Q1, copied down:

=AVERAGE(IF(M1:P1>0,M1:P1/$M$3:$P$3))

....confirmed with CONTROL+SHIFT+ENTER, not just ENTER. Format cell as
'Percentage'.

Hope this helps!

In article <72985CF6-B29E-4A01-8DA1-(E-Mail Removed)>,
"Scafidel" <(E-Mail Removed)> wrote:

> I have a sheet with (L to R) student name, number right each test, total
> right, average percentage, letter grade. After the names the row has
> question number at bottom which are added up at the end of the row. Total
> right are divided by total questions. The problem arises when a student does
> not take a test. The blank cell is, in effect, like a zero on a test, as
> that student's total is still divided by total questions, giving the wrong
> grade (see Fred, who missed the second test). Sorry for the long length.
> John 10 9 12 31 97% A
> Fred 10 10 20 63% F
> Total10 10 12 32 100%

 
Reply With Quote
 
=?Utf-8?B?U2NhZmlkZWw=?=
Guest
Posts: n/a
 
      18th Aug 2005
Thanks.
When I tried this formula I got "#value!". Also, I'm not sure what you mean
by "....confirmed with CONTROL+SHIFT+ENTER, not just ENTER. "


"Domenic" wrote:

> Assuming that M1:P2 contains student test scores, and M3:P3 contains the
> total score for each test, try...
>
> Q1, copied down:
>
> =AVERAGE(IF(M1:P1>0,M1:P1/$M$3:$P$3))
>
> ....confirmed with CONTROL+SHIFT+ENTER, not just ENTER. Format cell as
> 'Percentage'.
>
> Hope this helps!
>
> In article <72985CF6-B29E-4A01-8DA1-(E-Mail Removed)>,
> "Scafidel" <(E-Mail Removed)> wrote:
>
> > I have a sheet with (L to R) student name, number right each test, total
> > right, average percentage, letter grade. After the names the row has
> > question number at bottom which are added up at the end of the row. Total
> > right are divided by total questions. The problem arises when a student does
> > not take a test. The blank cell is, in effect, like a zero on a test, as
> > that student's total is still divided by total questions, giving the wrong
> > grade (see Fred, who missed the second test). Sorry for the long length.
> > John 10 9 12 31 97% A
> > Fred 10 10 20 63% F
> > Total10 10 12 32 100%

>

 
Reply With Quote
 
Chip Pearson
Guest
Posts: n/a
 
      18th Aug 2005
> by "....confirmed with CONTROL+SHIFT+ENTER, not just ENTER. "

This means that after you type in the formula, you need to press
CTRL SHIFT and ENTER all at the same time, rather than just
ENTER. If you do this properly, Excel will display the formula
enclosed in curly braces {}.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com




"Scafidel" <(E-Mail Removed)> wrote in message
news:9CAC7EFE-33AD-4B2D-B111-(E-Mail Removed)...
> Thanks.
> When I tried this formula I got "#value!". Also, I'm not sure
> what you mean
> by "....confirmed with CONTROL+SHIFT+ENTER, not just ENTER. "
>
>
> "Domenic" wrote:
>
>> Assuming that M1:P2 contains student test scores, and M3:P3
>> contains the
>> total score for each test, try...
>>
>> Q1, copied down:
>>
>> =AVERAGE(IF(M1:P1>0,M1:P1/$M$3:$P$3))
>>
>> ....confirmed with CONTROL+SHIFT+ENTER, not just ENTER.
>> Format cell as
>> 'Percentage'.
>>
>> Hope this helps!
>>
>> In article
>> <72985CF6-B29E-4A01-8DA1-(E-Mail Removed)>,
>> "Scafidel" <(E-Mail Removed)> wrote:
>>
>> > I have a sheet with (L to R) student name, number right each
>> > test, total
>> > right, average percentage, letter grade. After the names
>> > the row has
>> > question number at bottom which are added up at the end of
>> > the row. Total
>> > right are divided by total questions. The problem arises
>> > when a student does
>> > not take a test. The blank cell is, in effect, like a zero
>> > on a test, as
>> > that student's total is still divided by total questions,
>> > giving the wrong
>> > grade (see Fred, who missed the second test). Sorry for the
>> > long length.
>> > John 10 9 12 31 97% A
>> > Fred 10 10 20 63% F
>> > Total10 10 12 32 100%

>>



 
Reply With Quote
 
=?Utf-8?B?U2NhZmlkZWw=?=
Guest
Posts: n/a
 
      19th Aug 2005
Ah-hah! Use the Force, Luke!
Thanks

"Chip Pearson" wrote:

> > by "....confirmed with CONTROL+SHIFT+ENTER, not just ENTER. "

>
> This means that after you type in the formula, you need to press
> CTRL SHIFT and ENTER all at the same time, rather than just
> ENTER. If you do this properly, Excel will display the formula
> enclosed in curly braces {}.
>
>
> --
> Cordially,
> Chip Pearson
> Microsoft MVP - Excel
> Pearson Software Consulting, LLC
> www.cpearson.com
>
>
>
>
> "Scafidel" <(E-Mail Removed)> wrote in message
> news:9CAC7EFE-33AD-4B2D-B111-(E-Mail Removed)...
> > Thanks.
> > When I tried this formula I got "#value!". Also, I'm not sure
> > what you mean
> > by "....confirmed with CONTROL+SHIFT+ENTER, not just ENTER. "
> >
> >
> > "Domenic" wrote:
> >
> >> Assuming that M1:P2 contains student test scores, and M3:P3
> >> contains the
> >> total score for each test, try...
> >>
> >> Q1, copied down:
> >>
> >> =AVERAGE(IF(M1:P1>0,M1:P1/$M$3:$P$3))
> >>
> >> ....confirmed with CONTROL+SHIFT+ENTER, not just ENTER.
> >> Format cell as
> >> 'Percentage'.
> >>
> >> Hope this helps!
> >>
> >> In article
> >> <72985CF6-B29E-4A01-8DA1-(E-Mail Removed)>,
> >> "Scafidel" <(E-Mail Removed)> wrote:
> >>
> >> > I have a sheet with (L to R) student name, number right each
> >> > test, total
> >> > right, average percentage, letter grade. After the names
> >> > the row has
> >> > question number at bottom which are added up at the end of
> >> > the row. Total
> >> > right are divided by total questions. The problem arises
> >> > when a student does
> >> > not take a test. The blank cell is, in effect, like a zero
> >> > on a test, as
> >> > that student's total is still divided by total questions,
> >> > giving the wrong
> >> > grade (see Fred, who missed the second test). Sorry for the
> >> > long length.
> >> > John 10 9 12 31 97% A
> >> > Fred 10 10 20 63% F
> >> > Total10 10 12 32 100%
> >>

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Where can I find how to use Excel 2007 to grade tests? Dale Pulliam Microsoft Excel New Users 1 2nd Apr 2008 02:37 PM
formulate tests scores then average them as percentiles in excel =?Utf-8?B?RGF2aWQgUHJ1ZGVu?= Microsoft Excel New Users 1 17th Apr 2006 07:07 PM
speaking of free speed tests: Dipstick by Klever Group Inc. Susan Bugher Freeware 2 14th Feb 2006 05:22 PM
tests Garcia Anti-Virus 2 1st May 2005 10:27 PM
AC3 and DRM tests Jeff Claar Windows XP Logo 0 9th Sep 2003 02:03 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:22 AM.