LARGE |
LARGE(array, k) |
Returns the kth largest numerical value. |
array | The array for which you want to determine the Kth largest value. |
k | The position from the largest to return. |
REMARKS |
* This function can return multiple values. * You can use this function to select a value based on its relative standing. * An alternative way to find the Kth largest value is just to sort the data into descending order. * Any text or non numerical values are ignored. * Any duplicate numbers are counted the same as values that are different. See Example 4. * If "array" is empty, then #NUM! is returned. See Example 18. * If "k" <= 0, then #NUM! is returned. See Example 20. * If "k" = 1, then the largest value is returned. * If "k" = length of the "array", then the smallest value is returned. * If "k" > length of the "array", then #NUM! is returned. Example 21. * You can use the SMALL function to return the kth smallest value in a list or array of numbers. * You can use the MAX function to return the largest value in a list of array of numbers. * You can use the MIN function to return the smallest value in a list of array of numbers. * For the Microsoft documentation refer to support.microsoft.com * For the Google documentation refer to support.google.com |
|
1 - What is the largest number in the values (1,2,3). 2 - What is the 2nd largest number in the values (4,5,6). 3 - What is the 2nd largest number in the values (1,5,5,5,8). 4 - What is the 4th largest number in the values (1,5,5,5,8). 5 - What is the 3rd largest number in the values (-3,-2,0,3,2). 6 - What is the 5th largest number in the values (-3,-2,0,3,2). 7 - What is the largest number in the values (1,2,"3"). 8 - What is the largest number in the range "B1:B3". 9 - What is the largest number in the range "B4:B5". 10 - What is the largest number in the values (1,2,3). 11 - What are the top two largest numbers in the values (1,2,3,4,5,6). 12 - What is the largest number in the range "B5:B7". 13 - If any of the cells contain an error that error value is passed on. 14 - If "k" is left blank, then #NUM! is returned. 15 - If "k" > length of the "array", then #NUM! is returned. |
© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top