Difference between revisions of "Manuals/calci/LARGE"
Jump to navigation
Jump to search
(Created page with "<div id="6SpaceContent" class="zcontent" align="left"> '''LARGE'''('''A''','''k''') '''Where A '''is the array or range of data for which want to decide the k-th largest...") |
|||
Line 1: | Line 1: | ||
− | <div | + | <div style="font-size:30px">'''LARGE(ar,i)'''</div><br/> |
+ | *<math>ar</math> is the array of numbers. | ||
+ | *<math>I</math> is the position of the largest number. | ||
− | |||
− | |||
− | </ | + | ==Description== |
− | -- | + | *This function gives the <math>i</math>-th largest value in the given set of numbers. |
− | < | + | *This function can be used to find data based on relative size - such as the fourth largest number in a given list of data. |
+ | *In <math>LARGE(ar,i)</math>, <math>ar</math> is the array of data to find the <math>i</math>-largest value.<math>i</math> is the position from the largest to return. | ||
+ | *If <math>k</math> is the number of data points in a range, then <math>LARGE(ar,1)</math> gives the largest value, and <math>LARGE(ar,n)</math> gives the smallest value. | ||
+ | *The function gives the result as error when | ||
+ | 1. The array is empty. | ||
+ | 2. <math>i\le 0<math> or <math>i</math> is greater than the total number of points in the given set. | ||
− | + | ==Examples== | |
+ | {| class="wikitable" | ||
+ | |+Spreadsheet | ||
+ | |- | ||
+ | ! !! A !! B !! C !! D!! E | ||
+ | |- | ||
+ | ! 1 | ||
+ | | 13 || 10 || 9 || 13 || 21 | ||
+ | |- | ||
+ | ! 2 | ||
+ | | 28 || 15 || 10 || 16 || 19 | ||
+ | |- | ||
+ | !3 | ||
+ | | 12 || 19 || -1 || 0 || 18 | ||
+ | |} | ||
− | + | #=LARGE(A1:E2,3) = 19 | |
− | - | + | #=LARGE(A1:E2,9) = 10 |
− | + | #=LARGE(A2:E3,10) = -1 | |
+ | #=LARGE(A2:E3,9) = 0 | ||
− | + | ==See Also== | |
− | + | *[[Manuals/calci/SMALL | SMALL ]] | |
− | + | *[[Manuals/calci/PERCENTILE | PERCENTILE ]] | |
− | + | *[[Manuals/calci/PERCENTRANK | PERCENTRANK ]] | |
− | + | *[[Manuals/calci/QUARTILE | QUARTILE]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | | | ||
− | + | ==References== | |
− |
Revision as of 00:13, 24 March 2014
LARGE(ar,i)
- is the array of numbers.
- is the position of the largest number.
Description
- This function gives the -th largest value in the given set of numbers.
- This function can be used to find data based on relative size - such as the fourth largest number in a given list of data.
- In , is the array of data to find the -largest value. is the position from the largest to return.
- If is the number of data points in a range, then gives the largest value, and gives the smallest value.
- The function gives the result as error when
1. The array is empty. 2. is greater than the total number of points in the given set.
Examples
A | B | C | D | E | |
---|---|---|---|---|---|
1 | 13 | 10 | 9 | 13 | 21 |
2 | 28 | 15 | 10 | 16 | 19 |
3 | 12 | 19 | -1 | 0 | 18 |
- =LARGE(A1:E2,3) = 19
- =LARGE(A1:E2,9) = 10
- =LARGE(A2:E3,10) = -1
- =LARGE(A2:E3,9) = 0