![]() |
Microsoft Office Development and Consultancy |
| Home | | | Excel | | | VBA | | | C# | | | Finance | | | Tools | | | Newsletter | | | Feedback | | | Contact |
| Excel > Functions > Statistical > LARGE |
LARGE(array, k) |
| Returns the Kth largest value in an array of numbers. |
| array | The array for which you want to determine the Kth largest value. | |
| k | The position from the largest to return. |
| REMARKS |
| 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. Examples 4,5,6,7,8. | ||
| 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. | ||
| This is very similar to the SMALL function. | ||
| Example 1 - What is the 3rd largest number in this array. | ||
| Example 2 - What is the 4th largest number in this array. | ||
| Example 3 - What is the 5th largest number in this array. | ||
| Example 4 - What is the 1st largest number in this array when there are 2 duplicates. | ||
| Example 5 - What is the 2nd largest number in this array when there are 2 duplicates. | ||
| Example 6 - What is the 3rd largest number in this array when there are 2 duplicates. | ||
| Example 7 - What is the 4th largest number in this array when there are 2 duplicates. | ||
| Example 8 - What is the 5th largest number in this array when there are 2 duplicates. | ||
| Example 9 - | ||
| Example 10 - | ||
| Example 11 - | ||
| Example 12 - | ||
| Example 13 - | ||
| Example 14 - | ||
| Example 15 - | ||
| Example 16 - | ||
| Example 17 - | ||
| Example 18 - If "array" is empty, then #NUM! is returned. | ||
| Example 19 - If "k" <= 0 then #NUM! is returned. | ||
| Example 20 - If "k" > length of the "array", then #NUM! is returned. The total length of the "array" is 4 because the text entry is ignored. | ||
| Example 21 - If "k" > length of the "array", then #NUM! is returned. |
| EXAMPLES |
|
| Functions - L | Index - L | Office Online 2013 | 2010 | 2007 | 2003 |
| © Better Solutions Limited 04-Jun-2013 | Top |