How to Highlight the Lowest Value in Excel (11 Easy Ways)

The following sample dataset includes 3 columns that consist of the Marks of some Physics Students.

highlight lowest value in excel dataset


Method 1 – Using the Sort & Filter Option to Highlight the Lowest Value

Steps:

  • Select the data range.
  • Go to the Home tab>> Editing dropdown>> Sort & Filter dropdown>> Custom Sort option.

Using Sort & Filter Option to Highlight Lowest Value in Excel

  • The Sort Dialog Box will appear.
  • Select the Marks on Sort by and choose Smallest to Largest for Order.
  • Press OK.

Using Sort & Filter Option in Excel

  • You will get the values sorted in the smallest to largest order.
  • Fill the D5 cell, which contains the lowest value after the sort operation, with any color if you wish to highlight the smallest value.
  • You will get the highlighted lowest value.

Using Sort & Filter Option in Excel

Read More: How to Highlight Highest Value in Excel


Method 2 – Using the SMALL Function

Steps:

  • Select Cell F5.
  • Enter the following formula:
=SMALL(D5:D10,1)

Using SMALL function to highlight lowest value in excel

  • Here, D5:D10 is an array, and 1 is the k-th value, which returns the k-th smallest value in a range.
  • You will get the lowest value among the marks of the students.

Using SMALL function in Excel


Method 3 – Finding Bottom 3 Values with SMALL Function

Steps:

  • Select Cell G5.
  • Enter the following formula:
=SMALL($D$5:$D$10,F6)

Finding Bottom 3 Values with SMALL Function

  • Here, $D$5:$D$10 is an array, and F6 is the k-th value, which returns the k-th smallest value in a range.
  • Press ENTER.

Using SMALL function in Excel

  • Drag down the Fill Handle tool.
  • You will get the lowest 3 values among the marks of the students.

Using SMALL function

Read More: How to Highlight a Column in Excel


Method 4 – Combining INDEX and MATCH Functions

Steps:

  • Select Cell G5.
  • Enter the following formula:
=INDEX(B5:B10,MATCH(SMALL($D$5:$D$10,F6),$D$5:$D$10,0))

Combine INDEX and MATCH Functions to highlight lowest value in excel

  • Here, B5:B10 is the range of Student names,$D$5:$D$10 is the range of values, and F6 is the k-th value, which returns the k-th smallest value in a range. 0 is for an exact match.
  • Press ENTER.
  • Drag down the Fill Handle tool.

Combine INDEX and MATCH Functions

  • You will get the names of the 3 students with the bottom 3 marks.
  • Copy and Paste the marks according to the students in the Marks column.
  • You will have the lowest 3 values here.

Combine INDEX and MATCH Functions in Excel


Method 5 – Combining SMALL and ROWS Functions to Sort Smallest to Largest Values

Steps:

  • Select Cell E5.
  • Enter the following formula:
=SMALL($D$5:$D$10,ROWS( D$5:D5))

Combine SMALL and ROWS Functions to Sort Smallest to Largest Values in Excel

  • Here, $D$5:$D$10 is an array, and ROWS( D$5:D5) will give the k-th value in each row.
  • Press ENTER.
  • Drag down the Fill Handle tool.
  • You will get the values in ascending order in the Lowest to Highest Marks column.
  • Yu will get the highlighted lowest value.

Combine SMALL and ROWS Functions


Method 6 – Using Conditional Formatting

Steps:

  • Select the dataset, excluding the header.
  • Go to the Home tab>> Conditional Formatting dropdown>> Manage Rules option.

Using Conditional Formatting to highlight lowest value in excel

  • The Conditional Formatting Rules Manager dialog box will appear.
  • Select the New Rule option.

Using Conditional Formatting in Excel

  • The New Formatting Rule dialog box will appear.
  • Select the Format only top or bottom ranked values option.
  • Select Bottom and type 1 to get the lowest value only in the indicated area.
  • Click on Format.

Using Conditional Formatting in Excel

  • The Format Cells wizard will pop up.
  • Select any color of your wish.
  • Press OK.

Using Conditional Formatting in Excel

  • Click OK.

Using Conditional Formatting in Excel

  • Press OK.
  • The lowest value in the Marks column will be highlighted.

Using Conditional Formatting in Excel

Read More: How to Highlight Text in Excel


Method 7 – Highlighting the Smallest Value with Criteria

Steps:

  • Select the dataset, excluding the header.
  • Go to the Home Tab>> Conditional Formatting Dropdown>> New Rule Option.
  • The New Formatting Rule dialog box will appear.
  • Select the Use a formula to determine which cells to format option.
  • Enter the following formula in the Format values where this formula is true: 
=AND($B5=$F$6,$D5<=SMALL(IF($B$5:$B$12=$F$6,$D$5:$D$12),1))

Using Conditional Formatting to Highlight Smallest Value with Criteria in Excel

  • Here, within the AND function, there are two criteria, and when these two are fulfilled, the cell will be highlighted.
  • IF($B$5:$B$12=$F$6,$D$5:$D$12) will give an array including TRUE/FALSE when the value in F6 matches in the range $B$5:$B$12 or not and the corresponding value in the range $D$5:$D$12.
  • Then this array goes to the SMALL function with a value of 1 for k and gives the lowest value.
  • Follow the steps of Method 6.
  • Afterward, you will get the lowest mark for Michael highlighted.

Using Conditional Formatting in Excel


Method 8 – Highlighting the Lowest Value in Each Row

Steps:

  • Follow Step-01 of Method-7.
  • Enter the following formula:
=C6=MIN($C6:$F6)

Using Conditional Formatting in Excel

  • Here, the MIN function will return the smallest value in each row.
  • You will get the lowest values in each row.

Using Conditional Formatting in Excel


Method 9 – Highlighting the Lowest Value in Each Column

Steps:

  • Follow Step-01 of Method-7.
  • Enter the following formula:.
=C6=MIN(C$6:C$8)

Highlight Lowest Value in Each Column in Excel

  • Here, the MIN function will return the smallest value in each column.
  • You will get the highlighted lowest values in each column.

Highlight Lowest Value in Each Column in Excel


Method 10 – Using SMALL Function for Dates

Steps:

  • Select Cell E5.
  • Enter the following formula: Here, C5:C9 is the range of dates.
=SMALL(C5:C9,1)

Using SMALL Function for Dates

  • Press ENTER.
  • You will get the date of the first completed project.

Using SMALL Function for Dates


Method 11 – Finding the Previous Date Closest to a Specified Date

Steps:

  • Select Cell E5.
  • Enter the following formula:
=SMALL($C$5:$C$9,COUNTIF($C$5:$C$9,"<"&$E$4))

Finding Previous Date Closest to a Specified Date in Excel

  • Here, $C$5:$C$9 is the range of dates and COUNTIF($C$5:$C$9,"<"&$E$4) will provide the value for k.
  • You will get the date before the due date.

Using SMALL Function for Dates


Download the Practice Workbook

You can download the following workbook to practice.


Related Articles


<< Go Back to Highlight in Excel | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Tanjima Hossain
Tanjima Hossain

TANJIMA HOSSAIN is a marine engineer who enjoys working with Excel and VBA programming. For her, programming is a handy, time-saving tool for managing data, files, and online tasks. She's skilled in Rhino3D, Maxsurf C++, MS Office, AutoCAD, and Excel & VBA, going beyond the basics. She holds a B.Sc. in Naval Architecture & Marine Engineering from BUET and is now a content developer. In this role, she creates tech-focused content centred around Excel and VBA. Apart from... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo