Fresh Excel Tips

Quick and Easy Excel Tips and Tutorials

Use the MIN function to find the employee with the lowest sales

In a company, employee sales are monitored. Columns B to E contain the sales for the first four months of the year. To determine which employee has the lowest monthly sales, use the MIN function.
The function’s return value is the smallest value in a set.

MIN(number1, number2, …)
number1, number2, …: From 1 to 30 numbers for which you want to find the smallest value. It is possible to use a cell reference; however, the cells must contain numbers or values that can be converted to numbers.

To determine the lowest monthly sales:

  1. In a worksheet, copy the range A1:E10 shown below.
  2. Select cells B12:E12 and type the following formula: =MIN(B2:B10).
  3. Press Ctrl+Enter.

Use the MIN function to find the employee with the lowest sales

This tip is compatible with Excel 97, 2000, 2003 and 2007.

Use the MIN function to find the employee with the lowest sales
  1. Use the MIN function to detect the smallest value in a column
  2. Use the AND function to show sales for a specific period of time
  3. How to Use the RANK function to determine the rank of sales
  4. How to Use the MEDIAN function to calculate the median sales
  5. How to Use the REPLACE function in Excel

2 Comments

  1. Strictly speaking, this doesn’t identify the employee with the lowest sales, it identifies the lowest sales value. To identify the employee, you could use conditional formatting. Select B2:E10, go to Formatting menu > Conditional Formatting, choose Formula Is for Condition 1, and enter this formula:

    =B2=MIN(B$2:B$10)

    then click Format and pick a fill color to identify the lowest performer. Click Enter, and the lowest value in each column will be highlighted.


  2. Didn’t I comment already? This post looks very familiar.

    This will not identify the employee with the lowest sales, merely the lowest sales value.

    You could use conditional formatting to highlight this minimum value in the table. Select B2:E10, go to Formatting menu > Conditional Formatting, and select Formula for Condition 1. Enter =B2=B$12 or =B2=MIN(B$2:B$10) as yoour condition formula, and select a format to highlight this minimum, perhaps bold red text of light red background.


Leave a Reply