Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 88
Default Calculating averages (olympic style)

good morning,

i have a worksheet and i need to calculate averages with a catch. i know
how to do basic averages and stuff. i need a formula to calculate the
following example:

data is in row 1. column a, b, c, d, e and f all have values entered in
them. i need the formula to drop the lowest value and give an average for
the remaining 5 only.

thank you,

jat jaswal

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 287
Default Calculating averages (olympic style)

You could try this formula

=(SUM(A1:F1)-MIN(A1:F1))/(COUNT(A1:F1)-1)

"jatman" wrote:

good morning,

i have a worksheet and i need to calculate averages with a catch. i know
how to do basic averages and stuff. i need a formula to calculate the
following example:

data is in row 1. column a, b, c, d, e and f all have values entered in
them. i need the formula to drop the lowest value and give an average for
the remaining 5 only.

thank you,

jat jaswal

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,118
Default Calculating averages (olympic style)

If there will ALWAYS be at least 5 numbers in A1:H1
Then....try this:
=AVERAGE(INDEX(LARGE(A1:F1,{1,2,3,4,5}),0))

Otherwise:
=SUM(A1:F1,-MIN(A1:F1)*(COUNT(A1:F1)5))/(MIN(COUNT(A1:F1),5))

Does that help?
***********
Regards,
Ron

XL2002, WinXP


"jatman" wrote:

good morning,

i have a worksheet and i need to calculate averages with a catch. i know
how to do basic averages and stuff. i need a formula to calculate the
following example:

data is in row 1. column a, b, c, d, e and f all have values entered in
them. i need the formula to drop the lowest value and give an average for
the remaining 5 only.

thank you,

jat jaswal

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Calculating averages (olympic style)

=AVERAGE(IF(A1:F1<MIN(A1:F1),A1:F1))

ctrl+shift+enter, not just enter


"jatman" wrote:

good morning,

i have a worksheet and i need to calculate averages with a catch. i know
how to do basic averages and stuff. i need a formula to calculate the
following example:

data is in row 1. column a, b, c, d, e and f all have values entered in
them. i need the formula to drop the lowest value and give an average for
the remaining 5 only.

thank you,

jat jaswal

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 92
Default Calculating averages (olympic style)

Hello,

Sorry, that does not work if min value appears more than once.

I suggest
=(SUM(A1:F1)-MIN(A1:F1))/4

Regards,
Bernd



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
Calculating Block Averages M.G. Excel Discussion (Misc queries) 5 January 15th 07 06:51 PM
How do I make my borded automatic black instead of pink? Brenda Excel Worksheet Functions 3 August 11th 06 09:34 PM
Calculating weighted averages rgl Excel Discussion (Misc queries) 6 February 22nd 06 06:15 PM
calculating averages Golf Averages Excel Discussion (Misc queries) 1 August 15th 05 08:25 PM
creating intervals and calculating averages Nathan D Excel Discussion (Misc queries) 2 February 16th 05 02:30 PM


All times are GMT +1. The time now is 10:32 AM.

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"