answersLogoWhite

0

Use the LARGE function. If you want to get the second largest in the cells A5 to A40 you would use it as follows:

=LARGE(A5:A40,2)

The 2 specifies that you want the second largest. By changing it to another number you can find other positions within a set of values.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is v - look up?

VLOOKUP is a function of Microsoft Excel. You can use VLOOKUP to find a value in a table or list on an Excel sheet. It looks at a value in a column and finds the corresponding value in another column in the same row.


A 1 in Microsoft Excel is?

A 1 in Microsoft Excel is a value. A1 is a cell in column A and row 1.


What is default value for height and column width in Excel?

row height = 15 column width = 8.43


How do you EXCEL Trying To Link One Word In Column B To Input A Different Word In Column G For Example Column B Is A Product Name. Column G Is The Chemical Composition. When Ever The Word product Is I?

It looks as if you want to do a lookup - look up data in a table, in one column, and return the value next to it, in another column. The vlookup() function does just that.


How do you format an absolute value in Excel?

In excel cell, type =ABS(XXXX). It will return the absolute value of the number or equation you put within the parentheses.


Is 8.4999 return a value of 8 in Microsoft Excel sheet?

=ROUND(8.4999,0) function will return 8.


In Excel a button that inserts Excel functions to sum average or count all the values in a column or row or display the minimum or maximum value in a column or row is called the?

The Autosum button can do all of those things.


How do you work out percentage out on excel?

Enter the percent in one column, enter the other value in another column. In a third column tell excell to multiply the 2 columns and divide by 100.


In Microsoft Excel what automatically resizes the column to fit the width of the columns contents?

In Microsoft Excel, double-click on the line that separates the column labels (the letters at the top of the spreadsheet). The column will resize to fit the contents of the widest value in that column. This usually works unless the contents of the cell are the result of a formula.


How is validating a column in MS Excel carried out?

If you want to validate cells in a column, such that they only let in certain value, you select all the cells and go to the Data tab and pick Data Validation. From there you can do a range of validation settings, such as limiting a value to a highest and/or lowest value. You can also set messages to tell the user what they can enter and give errors if they do not follow the set validation rules.


What is an Excel reference function that looks for a value in the top row of a table or array of values and returns the value in the same column from a row you specify?

hlookup


You have 2 columns in excel column A has a list of 10000 user ids column B has 1000 random user ids from column A how do you match the user id in column a with the user id in column b?

The simplest way to do this is to use the VLOOKUP function. VLOOKUP($A1, $B$1:$B$1000, 1, 0) This will look up the value of cell A1 in the range B1:B1000. If it is found, it will return the value of the first column in the range (in this case there is only one column in the range). If the value is not found, it will return #N/A. You would need to use this function on every cell in the range A1:A10000 to see which ones match. I would insert a column before A:A and use the function there (just be sure to adjust your formula appropriately). Sorting will bring the matches to the top.