Add top numbers

  • Thread starter Thread starter Frustrated
  • Start date Start date
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,LgList)

where List is the range of numbers, and LgList is, in this case, 20.
 
Back
Top