Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 78
Default Formula to find average of the best 2 of 3 scores

Hello, I have a spreadsheet that has test scores in 3 columns . All 3 tests
are out of 10. I would like to create a formula that takes the average of
the best 2 or the 3 tests. How would I do that?

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Formula to find average of the best 2 of 3 scores

Try this:

=AVERAGE(LARGE(A1:C1,{1,2}))


--
Biff
Microsoft Excel MVP


"Melanie" wrote in message
...
Hello, I have a spreadsheet that has test scores in 3 columns . All 3
tests
are out of 10. I would like to create a formula that takes the average of
the best 2 or the 3 tests. How would I do that?

Thanks



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 353
Default Formula to find average of the best 2 of 3 scores

Here are a couple of ways:
Sums the range, subtracts the smallest value and then divides by two
(assumes there will always be three values)
=(SUM(C2:E2)-MIN(C2:E2))/2
Averages the highest and second highest values in the range (works even when
there are only two values)
=AVERAGE(MAX(C2:E2),LARGE(C2:E2,2))
These formulas are for grades entered in columns C, D, and E. Adjust as
needed.



"Melanie" wrote:

Hello, I have a spreadsheet that has test scores in 3 columns . All 3 tests
are out of 10. I would like to create a formula that takes the average of
the best 2 or the 3 tests. How would I do that?

Thanks

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Formula to find average of the best 2 of 3 scores

Assuming your scores are in columns C, D and E starting on row 2, try
this:

=(SUM(C2:E2)-MIN(C2:E2))/2

Copy down as required.

Hope this helps.

Pete

On Nov 16, 7:08 pm, Melanie wrote:
Hello, I have a spreadsheet that has test scores in 3 columns . All 3 tests
are out of 10. I would like to create a formula that takes the average of
the best 2 or the 3 tests. How would I do that?

Thanks


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I average 4 of the last 8 golf scores to calculate a handic Handicapper1 Excel Worksheet Functions 3 August 20th 06 07:43 PM
formulate tests scores then average them as percentiles in excel David Pruden New Users to Excel 1 April 17th 06 07:07 PM
Calculating average scores from multiple sheets' information quailhunter Excel Worksheet Functions 2 October 16th 05 10:37 PM
I have 12 scores over 12 weeks . I want to average the highest 5 Directioneng Excel Worksheet Functions 1 August 18th 05 11:20 PM
Find top 10 scores John Terry Excel Worksheet Functions 2 November 22nd 04 10:03 PM


All times are GMT +1. The time now is 01:52 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"