LikeOffice    Excel Help

EXCEL Utility
Customized Ribbon

- Compare worksheets
- Database analysis
- Stock to your Excel
- Password recovery
- and more...


Excel Formula
List of Excel
Formula examples

 
Excel Question
Ask us an Excel Question


 

Sumproduct Lookup Sumif Countif Unique Percentile

 

1. Return the sum of the highest 3 values in Column H (rng_h)    
2. Return the average of the highest 3 values in Column H (rng_h), rounding it to one digit    





1. Return the sum of the highest 3 values in Column H (rng_h)

Return the sum of the highest 3 values in Column H (rng_h).
The Percentile function returns the nth percentile from a set of values.
The syntax for the Percentile function is:
Percentile( array, nth_percentile )
array is a range or array from which you want to return the nth percentile.
nth_percentile is the percentile value. It can be a value between 0 and 1.

Array Formula:

{=SUM(IF(RNG_H>PERCENTILE(RNG_H,(COUNT(RNG_H)-E12)/COUNT(RNG_H)),RNG_H))}

E12 = 3

Answer = 191

Top


2. Return the average of the highest 3 values in Column H (rng_h), rounding it to one digit

Return the average of the highest 3 values in Column H (rng_h), rounding it to one digit.
The Percentile function returns the nth percentile from a set of values.
The syntax for the Percentile function is:
Percentile( array, nth_percentile )
array is a range or array from which you want to return the nth percentile.
nth_percentile is the percentile value. It can be a value between 0 and 1.

Array Formula:

{=ROUND(AVERAGE(IF(RNG_H>PERCENTILE(RNG_H,(COUNT(RNG_H)-E12)/COUNT(RNG_H)),RNG_H)),1)}

E12 = 3

Answer = 63.7

Top


3. Returning a Reference to a Value - 1 area

Returning a Reference to a Value - 1 area.


Formula:

=INDEX($A$2:$B$10, 2, 2)



Answer = 44

Top

 




Microsoft® and Microsoft Excel® are registered trademarks of Microsoft Corporation.
©2003-2011 LikeOffice -
Privacy Policy - Contact us

[Top]