How to Find Duplicate Values in Excel Using VLOOKUP Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Excel is a great tool for working with data. One of its handy features is the VLOOKUP function, which helps you find matching or duplicate values in your data. In this article, we’ll show you how to use VLOOKUP to spot duplicates in a simple way. You’ll learn how to compare two columns in one sheet, check for duplicates across two sheets, and even find duplicates between two different Excel files.How to Find Duplicate Values in Excel Using VLOOKUPFind the detailed steps to use VLOOKUP in Excel to find duplicates in your Excel data. Here in this guide, we have created two columns of different sections to check the VLOOKUP formula on columns:Created Two Columns Here is the formula we are going to use:=VLOOKUP(List1,List2,TRUE,FALSE)Step 1: Deploy VLOOKUPIn this formula, the List-1 names will be searched in List-2. If there exists any duplicate name, the formula will return the name from List-1. Let`s look closely at our example for better clarification.In C2 we will write this formula =VLOOKUP(A2:A10,B2:B10,TRUE,FALSE) and then press enter.Now, we will see this result:Here Himesh is duplicate valueStep 2: Verify Result Here the Himesh is found because the VLOOKUP function searches this name from Section A to Section B. When the same name is found it will output the result from Section A.Now drag the list and see all values.Here we drag the formulated CellsThe #N/A results are found because, in those particular cells, the names from column A are not found in column B.In the Result column, you’re seeing a total of 2 duplicate values ( Himesh, Pragya). #N/A values are representing the unique values of column Section A.VLOOKUP to Find Duplicate Values in Two Excel WorksheetsWe can also use the VLOOKUP to find duplicate values between two Excel worksheets. To do so follow the below steps:Step 1: Choose the WorksheetsMake two excel worksheet Section A and Section B.Two WorkbooksStep 2: Use VLOOKUP In the B2 of Section B type the below code and press enter:-=IF(ISERROR(VLOOKUP(A2,'Section A'!A1:A10,1,0)),"Unique","Duplicate")Section A and Section B on different workbooksVLOOKUP to Find Duplicates in Two Workbooks of ExcelWe can also use the VLOOKUP to find duplicate values between two Excel workbooks. To do so follow the below steps:Step 1: Choose WorkbooksNow we create a new Section A in a new Workbook with different values.New WorkbookAnd In our main workbook which we were working (in our last example), create another worksheet titled Sheet 1 and again create a list of products.Another workbook named Sheet1Step 2: Use VLOOKUPNow in cell C2 of Sheet1, write down the following formula and press enter.=IF(ISERROR(VLOOKUP(B2,[VL]Section A!$A$2:$A$10,1,0)),"Unique", "Duplicate")You will get the result as Unique because value does not exist in Section A.ResultNow Drag Down the formulated cell to see out the result of the whole column. Comment More info V vibhanshu19 Follow Improve Article Tags : Excel ExcelGuide Explore Excel FundamentalIntroduction to MS Excel5 min readDownload and Install MS Excel 2024/365 Edition4 min readExcel Spreadsheet4 min readWorkbooks in Microsoft Excel4 min readWorksheets in Excel4 min readDelete All Rows Below Certain Row or Active Cell in Excel5 min readRemove Hyperlinks in Excel6 min readHow to Use Fractions in Excel6 min readExcel FormattingData Formatting in Excel5 min readExpand Cells to Fit the Text Automatically in Excel3 min readExcel Date and Time Formats3 min readInsert a Picture in a Cell in MS Excel3 min readHow to Unhide and Show Hidden Columns in Excel: Step by Step Guide9 min readConditional Formatting in Excel8 min readApply Conditional Formatting Based On VLookup in Excel3 min readHow to Compare Two Columns and Delete Duplicates in Excel3 min readHow to Find Duplicate Values in Excel Using VLOOKUP3 min readExcel Formula & FunctionBasic Excel Formulas3 min readUse of Concatenate in Excel5 min readPercentage in Excel8 min readExcel LEFT, RIGHT, MID, LEN, and FIND Functions5 min readExcel IF Function10 min readExcel VLOOKUP Function12 min readDynamic Array Formulas in Excel2 min readCOUNTIF Function in Excel - Step by Step Tutorial7 min readHow To Use MATCH Function in Excel (With Examples)6 min readExcel Data Analysis & VisualizationHow to Sort by the Last Name in Excel?5 min readHow to Sort Data by Color in Excel?3 min readHow to Swap Columns in Excel: 3 Methods Explained8 min readSparklines in Excel8 min readPivot Tables in Excel3 min readHow to Sort a Pivot Table in Excel : A Complete Guide7 min readPivot Table Slicers in Excel5 min readData Visualizations in Power View3 min readChart Visualizations in Excel Power View8 min readTable Visualization in Excel Power View5 min readMultiple Visualizations in Excel Power View4 min readDynamic Excel Dashboards Using Picklists3 min readAdvanced ExcelHow to Use Solver in Excel3 min readPower Query â Source Reference as File Path in Cell2 min readHow to Create Relational Tables in Excel?4 min readHow to Import, Edit, Load and Consolidate Data in Excel Power Query?7 min readConnecting Excel to SQLite4 min readHandling Integers in Advanced Excel2 min readPower Pivot for Excel10 min readExcel Power Pivot - Managing Data Model6 min readTable and Chart Combinations in Excel Power Pivot3 min readExcel Data VisualizationAdvanced Excel - Chart Design4 min readHow to Create a Graph in Excel: A Step-by-Step Guide for Beginners8 min readFormatting Charts in Excel3 min readCreate a Waterfall Chart in Excel5 min readScatter and Bubble Chart Visualization in Excel5 min readCreate a Pie Chart in Excel5 min readHow To Create A Pictograph In Excel?3 min readHow to make a 3 Axis Graph using Excel?7 min readHow To Create a Tornado Chart In Excel?2 min readHow to Create Flowchart in Excel: Step-by-Step Guide6 min readExcel VBA & MacrosHow to Insert and Run VBA Code in Excel?2 min readVariables and Data Types in VBA Excel9 min readHow to Use the VBA Editor in Excel: Quick Guide 20247 min readVBA Strings in Excel8 min readVBA Find Function in Excel5 min readActiveX Control in Excel VBA3 min readMultidimensional Arrays in Excel VBA2 min readVBA Error Handling10 min readHow to Remove Duplicates From Array Using VBA in Excel?2 min readMacros In Excel With Examples10 min readAssigning Excel Macro to Objects3 min readHow to Enable Macros in Excel (2025): Step-by-Step Guide9 min readPower BI & Advance Features in ExcelPower BI - Tools and Functionalities5 min readPower BI - Data Sources and its type4 min readPower BI - How to Create a Report using Excel Data in Workspace4 min readData Analysis Expressions (DAX)7 min readPower BI - How to upload Excel Files to Dashboard?3 min read Like