Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How do you add the top 20 numbers from a list of 500 numbers in a row?
|
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT(--(RANK(list_of_values,list_of_values,0)<=20),list_o f_values)
-- Tips for Excel, Word, PowerPoint and Other Applications http://www.kan.org/tips "Frustrated" wrote: How do you add the top 20 numbers from a list of 500 numbers in a row? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This formula will break if the 20th largest value has duplicates.
Try instead: =SUMIF(List,""&LARGE(List,LgList),List)+(LgList-COUNTIF(List,""&LARGE(List,LgList)))*LARGE(List,L gList) where List is the range of numbers, and LgList is, in this case, 20. -- John C "M Kan" wrote: =SUMPRODUCT(--(RANK(list_of_values,list_of_values,0)<=20),list_o f_values) -- Tips for Excel, Word, PowerPoint and Other Applications http://www.kan.org/tips "Frustrated" wrote: How do you add the top 20 numbers from a list of 500 numbers in a row? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=SUM(INDEX(LARGE(A1:A500,ROW(1:20)),0)) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Frustrated" wrote in message ... How do you add the top 20 numbers from a list of 500 numbers in a row? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
nice!
-- John C "RagDyer" wrote: Try this: =SUM(INDEX(LARGE(A1:A500,ROW(1:20)),0)) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Frustrated" wrote in message ... How do you add the top 20 numbers from a list of 500 numbers in a row? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel Formula - Add column of numbers but ignore negative numbers | Excel Worksheet Functions | |||
Help! How do you get excel to find the x(changes daily, marked in a cell from another formula) highest numbers in a group of numbers and sum them up? | Excel Worksheet Functions | |||
Help! How do you get excel to find the x(changes daily, marked in a cell from another formula) highest numbers in a group of numbers and sum them up? | Excel Worksheet Functions | |||
to find missing serial numbers in randomly generated numbers | Excel Worksheet Functions | |||
Count comma separated numbers, numbers in a range with dash, not t | Excel Discussion (Misc queries) |