answersLogoWhite

0


Best Answer

You can use the MIN function or you can use the SMALL function, using 1 as the second argument in it. So to find the lowest value in the cells from A2 to A16 the function choices are:

=MIN(A2:A16)

=SMALL(A2:A16,1)

MIN would be more commonly used for the lowest value, but using SMALL you can get the second smallest by changing the 1 to 2, or the third lowest by using 3 and so on.

User Avatar

Wiki User

6y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What function finds the smallest value in a list of numbers in Excel?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What would the function MODE in Excel tell us?

The MODE function finds the most commonly occurring number in a range of numbers.


How does the highvalue function in Excel work?

Excel does not have a HIGHVALUE function. It does have a MAX function that finds the largest number in a range.The MAX function returns the largest value from the numbers provided.MAX(number1,number2,...number_n)number1, number2, ... number_n are numeric values - they can be numbers, named ranges, arrays, or references to numbers. There can be up to 30 values entered.


What Excel function finds the position of an item in a table?

The MATCH function can find the position of an item in a table.


Why is the function in excel that finds the remainders of two numbers called MOD?

It is the short for MODULUS DIVISION which is an operation of division that aims to get the ramainder rather than the whole number.


What does the 'MOD' function do in Excel?

The MOD function finds a modulus. That is the remainder when you divide one number into another. So if you divide 10 by 3, you would get a remainder of 1. To do that with the MOD function, you enter it as: =MOD(10,3)


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.


What does the NPV function do in Excel?

You use the NPV function. Start by specifying the rate and follow it with a list of future values that you want to help determine your result. So you could have something like this:=NPV(5%,10,20)


Does the spelling checker in excel finds all the misspellings words?

no


What function finds the average of a range of cells?

The AVERAGE function.


What logical condition finds records matching both listed criteria in excel?

And


What kind of function finds the middle value?

The median.Median Value


How do you get Excel to stop calculating an IF function and lock in the value once a certain value has been met or after a certain number of calculations?

An IF function can only return one value. Once it finds a value that fits its criteria it does not continue. It is important that you construct a IF function correctly, particularly if it is a nested IF function, so that you get the correct result. If you do that, then issues around where it stops calculating are not a problem. It is simple to construct a nested IF function in the wrong way and it is a mistake a lot of people make.