Excel MIN & MAX Functions

When you’re working with numbers in Excel — like marks, sales, expenses, or temperatures — sometimes you need to know:

What’s the lowest value?

What’s the highest value?

That’s exactly what Excel’s MIN and MAX functions help you with!

Let’s explore both in detail with 5 easy-to-understand examples.

What Are MIN and MAX?

MIN: Finds the smallest number in a list.

MAX: Finds the largest number in a list.

They are super handy for quickly analyzing data like best/worst performers, highest/lowest expenses, or top/bottom sales.

Syntax

=MIN(number1, [number2], ...)
=MAX(number1, [number2], ...)

Example 1: Find Lowest and Highest Marks

SubjectMarks
Math85
Science72
English91
History65

Lowest:

=MIN(B2:B5)→ 65

Highest:

=MAX(B2:B5) → 91


Example 2: Find Minimum and Maximum Sales

MonthSales (₹)
Jan25000
Feb22000
Mar31000
Apr18000
  • Minimum Sales: =MIN(B2:B5) → ₹18000
  • Maximum Sales: =MAX(B2:B5) → ₹31000

Note: Great for identifying your best and worst performing months.

Example 3: Comparing Temperatures

CityTemp (°C)
Delhi40
Mumbai34
Jaipur42
Shimla18
  • Coldest City Temp: =MIN(B2:B5) → 18°C
  • Hottest City Temp: =MAX(B2:B5) → 42°C

Example 4: Set Target Based on Max Monthly Sale (Per Customer)

Suppose you have sales data of 5 customers over 4 months. You want to set each customer’s next month’s target as 20% more than their highest sale in any month.

CustomerJan (₹)Feb (₹)Mar (₹)Apr (₹)Target for May (₹)
Riya22000270003100029000=MAX(B2:E2)*1.2 → 37200
Soham18000200002500024000=MAX(B3:E3)*1.2 → 30000
Meera32000310003300035000=MAX(B4:E4)*1.2 → 42000
Aarav15000140001600015500=MAX(B5:E5)*1.2 → 19200
Tanvi27000290003100030000=MAX(B6:E6)*1.2 → 37200

Formula (in F2):

=MAX(B2:E2)*1.2 or =MAX(B2:E2)*120% or =MAX(B2:E2)*(1+20%)

Tip: Drag this formula down for all customers to automatically calculate 20% more than their maximum monthly sale.


Why This Is Useful

This method helps in:

  • Setting realistic and achievable sales targets
  • Encouraging incremental growth
  • Making use of Excel’s MAX function for performance-based planning

Example 5: Limit Salesman Incentive Using MIN

You want to give your sales team an incentive of ₹2.5 per unit sold, but maximum ₹1400 only. This means if someone sells a lot, they’ll still get no more than ₹1400.

Here’s how you can use the MIN function to apply this rule.

SalesmanQuantity SoldIncentive FormulaFinal Incentive (₹)
Riya500=MIN(B2*2.5, 1400)₹1250
Soham600=MIN(B3*2.5, 1400)₹1400 (capped)
Meera400=MIN(B4*2.5, 1400)₹1000
Aarav800=MIN(B5*2.5, 1400)₹1400 (capped)
Tanvi300=MIN(B6*2.5, 1400)₹750

Formula (in C2):

=MIN(B2*2.5, 1400)

This formula checks:

  • If (Quantity * 2.5) is less than ₹1400, give full amount.
  • If it exceeds ₹1400, cap it at ₹1400.

Why This Is Useful

This method helps:

  • Prevent overpayment
  • Automatically handle incentive caps
  • Keep your incentive system fair and Excel-powered

Comparison Table: MIN vs MAX

FeatureMIN FunctionMAX Function
FindsSmallest valueLargest value
Works with Numbers?✅ Yes✅ Yes
Works with Dates?✅ Yes (Earliest date)✅ Yes (Latest date)
Works with Negatives?✅ Yes✅ Yes
Empty Cells❌ Skipped❌ Skipped
Best Use CaseLowest marks, lowest salesHighest marks, best performance

Real-Life Use Cases

  • Track highest and lowest sales
  • Find top scorer and lowest marks
  • Check fastest and slowest delivery
  • Compare minimum and maximum temperature
  • Review biggest profit and worst loss

Summary

FunctionPurposeIgnores
MINReturns smallest numberBlank cells
MAXReturns largest numberBlank cells

What’s Next?

In the next post, we’ll learn about the LOWER, UPPER & PROPER Function.

Spread the love

Leave a Comment

Your email address will not be published. Required fields are marked *

Translate »
Scroll to Top