How to Find Value in Column in Excel (4 Methods)

Let’s take a dataset of some customers in a Super shop with the Customer ID, shopping Amount on a particular date, and also a Total if they bought anything previously. We’ll use it to demonstrate how you can find values in a column.

Data Set to Find value in Column


How to Find Value in Column in Excel: 4 Methods

Method 1 – Apply Conditional Formatting Feature to Find Value in a Column in Excel

Here we will find a particular value in an Excel spreadsheet.

Steps:

  • Select the column where we want to find the value. We selected Cells C5 to C8 in Column C.

Conditional Formatting Feature to Find Value in a Column in Excel

  • Go to the Home tab.
  • Select the Conditional Formatting.
  • Choose Highlight Cells Rules from the drop-down for Conditional Formatting.
  • Select Equal To.

Conditional Formatting Feature to Find Value in a Column in Excel

  • You will get a Pop-Up.
  • We want to find a value which is 500, so put this value on the first section on the following image.
  • You can also choose the highlight color. Select it from the menu as in the following image.

Conditional Formatting Feature to Find Value in a Column in Excel

  • You will find the value colored on the selected column.


Method 2 – Using Excel VLOOKUP Function to Find Value in a Column

Steps:

  • Create a new column named Result to show the VLOOKUP. 

Excel VLOOKUP Function to Find Value in a Column

  • Go to Cell E5 and type the VLOOKUP function. Here we will find the Cell D5 from the column range D5 to D8. We put FALSE in the argument section because we need the exact result.
  • So, the formula becomes:

=VLOOKUP(C5, D5:D8,1,FALSE)
Excel VLOOKUP Function to Find Value in a Column

  • Press Enter. As our selected value is found on the selected column, we will see that on this cell.

Excel VLOOKUP Function to Find Value in a Column

We can also compare all the values of Column D with Column E. Some additional steps are needed for that:

  • Edit the formula to put dollar ($) sign to use Absolute Reference:
=VLOOKUP(C5,$D$5:$D$8,1,FALSE)
  • Press Enter.

  • Pull down the Fill Handle icon from Cell E5.
  • Get the result of comparing Column D values on Column C.

Here we see that the values from cells D5 and D7 are found in Column C. And the rest of the values do not exist in Column C. So, the function will return #N/A errors for them.

Note: In the case of VLOOKUP, the comparing column must be on the right side of the reference cell. Otherwise, this function will not work.

Read More: How to Find Multiple Values in Excel


Method 3 – Insert MATCH Function to Find Value in a Column in Excel

Steps:

  • We added a column Result to show the different function results.
  • Copy this formula in Cell E5:
=MATCH(C5,$D$5:$D$8,0)

This find the value of Cell C5 in Column E of the range D5 to D8. Here we used the absolute sign so that the cell reference does not change. The last argument has been used as 0, as we want to get the exact result. This results in comparing Column C values on Column D.

MATCH Function to Find Value in a Column in Excel

  • Press Enter.

MATCH Function to Find Value in a Column in Excel

  • We get 1 in Column E. It means our cell value is in the 1st position of our selected range.
  • Use Fill Handle to autofill the entire column and we will get the positions if the values of Column C are found on Column D.

MATCH Function to Find Value in a Column in Excel

If we want to see TRUE or FALSE instead of position, we will need to apply the following steps:

  • Apply this function to Cell E5:  
=ISERROR(MATCH(C5,$D$5:$D$8,0))
  • Use Fill Handle from Cell E5.

MATCH Function to Find Value in a Column in Excel

This shows whether the function encountered an error, so it’s displaying the opposite values. Wrap the formula in a NOT function to correct it.

  • Edit the formula into:
=NOT(ISERROR(MATCH(C5,$D$5:$D$8,0)))


Method 4 – Link INDEX with MATCH Function to Find Value in a Column

Steps:

  • Use the MATCH function from the previous method.

INDEX with MATCH Function to Find Value in a Column

  • Go to Cell E5 and edit the formula bar.
  • Edit the formula into:
=INDEX(D5:D8,MATCH(C5,$D$5:$D$8,0))

INDEX with MATCH Function to Find Value in a Column

  • Press Enter. The result is shown in the following image.

INDEX with MATCH Function to Find Value in a Column

To show results in the rest of the cells, we have to autofill the rest of the cells in Column E.

  • Edit the formula and use Absolute Reference:
=INDEX($D$5:$D$8,MATCH(C5,$D$5:$D$8,0))

  • Drag down the Fill Handle icon up to the last cell in Column E.
  • The final output is shown in the following image.


Download Practice Workbook

Download this practice workbook to exercise while you are reading this article.


Related Articles


<< Go Back to Find Value in Range | Excel Range | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Alok Paul
Alok Paul

Alok Paul has completed his B.Sc. in Electronics and Telecommunication Engineering from East West University. He has been working on the ExcelDemy project for more than 2 years. He has written 220+ articles and replied to numerous comments. He is experienced in Microsoft Office, especially in Excel. He also led some teams on Excel and VBA content development. He has a keen interest in Advanced Excel, Data analysis, Excel Pivot Table, Charts, and Dashboard. He loves to research... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo