» 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:
- Keys to Reading an Annual Report (Barron's Business Keys)
- The New Financial Order: Risk in the Twenty-First Century
- Accounting and Financial Fundamentals for Nonfinancial Executives
- Financial Risk Manager Handbook, Second Edition
- Definitive Guide to Excel VBA
- Marketing Plan: A Handbook with Marketing Plan
easy way
onno visser
=min($a$2:a2)


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