Difference between revisions of "Documentation/How Tos/Calc: LARGE function"
From Apache OpenOffice Wiki
< Documentation | How Tos
m |
m |
||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | __NOTOC__ | + | {{DISPLAYTITLE:LARGE function}} |
| + | {{Documentation/CalcFunc StatisticalTOC | ||
| + | |ShowPrevNext=block | ||
| + | |PrevPage=Documentation/How_Tos/Calc:_STEYX_function | ||
| + | |NextPage=Documentation/How_Tos/Calc:_MAX_function | ||
| + | }}__NOTOC__ | ||
== LARGE == | == LARGE == | ||
| Line 12: | Line 17: | ||
<tt>'''LARGE(B1:B4; 3)'''</tt> | <tt>'''LARGE(B1:B4; 3)'''</tt> | ||
| − | : where cells <tt>'''B1'''</tt>, <tt>'''B2'''</tt>, <tt>'''B3'''</tt>, <tt>'''B4'''</tt> contain <tt>'''4'''</tt>, <tt>'''7'''</tt>, <tt>'''5'''</tt>,and <tt>'''8'''</tt>, returns <tt>'''5'''</tt>. The highest number is <tt>'''8'''</tt>, then <tt>'''7'''</tt>, then in third place <tt>'''5'''</tt>. | + | : where cells <tt>'''B1'''</tt>, <tt>'''B2'''</tt>, <tt>'''B3'''</tt>, <tt>'''B4'''</tt> contain <tt>'''4'''</tt>, <tt>'''7'''</tt>, <tt>'''5'''</tt>, and <tt>'''8'''</tt>, returns <tt>'''5'''</tt>. The highest number is <tt>'''8'''</tt>, then <tt>'''7'''</tt>, then in third place <tt>'''5'''</tt>. |
| − | {{ | + | {{SeeAlso|EN| |
* [[Documentation/How_Tos/Calc: SMALL function|SMALL]] | * [[Documentation/How_Tos/Calc: SMALL function|SMALL]] | ||
* [[Documentation/How_Tos/Calc: RANK function|RANK]] | * [[Documentation/How_Tos/Calc: RANK function|RANK]] | ||
Latest revision as of 14:48, 2 February 2024
Spreadsheet Lookup functions
Measures of dispersion / spread
Probability and statistics
Correlation and line fitting
See also (in the Arrays Functions category); GROWTH, LINEST, LOGEST, TREND
Ranking
LARGE
Returns the nth largest value in a list of numbers.
Syntax:
LARGE(numberlist; n)
- returns the nth largest number within the (unordered) range or array of numbers numberlist.
Example:
LARGE(B1:B4; 3)
- where cells B1, B2, B3, B4 contain 4, 7, 5, and 8, returns 5. The highest number is 8, then 7, then in third place 5.
See Also