» Finding Minimum / Maximum Values
CATEGORY - Excel Formula and Function
VERSION - All Microsoft Excel Versions
Column A contains a list of numbers.
We want to find the minimum value in the range between row 2 (first value in the list) and each row number specified in column B.
Solution:
Use the MIN and INDIRECT functions in the following formula:
=MIN(INDIRECT("$A$2:A"&B2))

Book Store:
Recommended Books:
- Microsoft Access Version 2002 Step by Step
- Microsoft Excel Version 2002 Step by Step
- The Accounting Game : Basic Accounting Fresh from the Lemonade Stand
- Microsoft Access 2002 for Dummies
- Cashflow Quadrant: Rich Dad's Guide to Financial Freedom
- Absolute Beginner's Guide to Microsoft Office Excel 2003
easy way
onno visser
=min($a$2:a2)


=MIN(INDIRECT("$A$2:A"&ROW())) and for the MAX
=MAX(INDIRECT("$A$2:A"&ROW()))