How To Compare Columns In Google Sheets

Google Sheets is Google’s powerful and easy-to-learn cloud-based spreadsheet application. Sheets competes with Microsoft Excel in the spreadsheet market, it doesn’t have the same breadth or depth of features.

Google Sheets, Google Docs,  and Google Slides are all part of the web-based office suite offered by Google for free. These applications integrate with Google Drive, Google’s file storage, and synchronization service.

One of those routine spreadsheet tasks is the comparison of information in different columns. Sheets is more than capable of performing this kind of comparison.

In this how-to article, I’ll show you how you can compare data between columns in Google Sheets, and I’ll also describe one approach to doing the same thing with Microsoft Excel. If you’re an Excel user who’s considering switching and is concerned about having comparable features, this article should ease your concerns. You can get it done with Sheets!

Google Sheets Compare Columns

How To Compare Columns In Google Sheets

Compare two columns in Google Sheets

One simple approach to comparing columns in Sheets is to use a formula. Let’s say that we have two columns of data, column A and column B. If we want to compare the columns and make a note of any differences, we can use a formula.

The IF formula is a powerful tool in Sheets (as well as in Excel). In the IF statement, there are three arguments.

The first argument is the test to be performed, the second argument is the result to return if the test is not true, and the third argument is the result to return if the test is true. This is fairly easy to understand, but hard to read in the formula, so let’s step through it.

  1. Open your Sheet on the page that you want to compare.
    How To Compare Columns In Google Sheets
  2. With data in columns A and B, highlight cell C1.
    How To Compare Columns In Google Sheets
  3. Paste =if(A1=B1,"","Mismatch") into cell C1. The logic is this: if A1 and B1 are the same (i.e., A1=B1), the formula returns an empty string, and if they are not the same (A1 does not equal B1), the formula returns “Mismatch”.
    How To Compare Columns In Google Sheets
  4. Left-click on the bottom right corner of cell C1 and drag downwards. This copies the formula in C1 into all the cells of column C.
    How To Compare Columns In Google Sheets

Now for each row in which A and B are not identical, column C will contain the word “Mismatch”. If you see a blank cell then the formula returned nothing indicating the columns match.

Comparing multi-column data

Comparing data between two columns is fine and useful…but what if you have multiple columns of data and need to do comparisons? Well, Sheets can handle that as well, using a function called ARRAYFORMULA. This is a fairly advanced formula and I’m not going to get deep into the weeds on how it works, but it will allow us to do some multi-column data comparisons.

In Sheets and other spreadsheets, you can use an array formula to calculate a column in or row of subtotal values by placing it in a row of cells or you can calculate a single value in a single cell.

Let’s say we have two sets of data. Each data set has an index value – may be a part number or a serial number. There are also a couple of columns of data associated with each index value – product colors, maybe, or the quantity on hand. Here’s what one of those data sets might look like.

How To Compare Columns In Google Sheets

So we have Jane’s data. But then Bob sends in his figures for the same set of information, and we suspect that there might be some differences between the two data sets. (In this example, you could easily visually identify the differences, but assume a spreadsheet with thousands of entries.) See below for Jane and Bob’s figures side by side.

If we want to check to see whether the price per unit figures reported by Jane and Bob are the same, we can use ARRAYFORMULA to do it. We want to report any differences and print them out starting in cell I3, so in I3 we type this formula:

=ArrayFormula(SORT(if(countifs(E3:E&G3:G,A3:A&C3:C)=0,A3:C,)))

This results in a multi-column comparison that looks like this:

How To Compare Columns In Google Sheets

Now we can see that SKU A10305 has a difference and we can figure out who has the right information and who’s got an error.

Using Power Tools to compare columns

Another approach is to use a comparison tool in one of the add-on packs for Google Sheets. One tool is known as ‘Power Tools, a very useful collection of add-ons to extend the functionality of Google Sheets. It is one of many such tools that greatly extend the basic functionality and take a lot of the work out of creating spreadsheets.

While they used to be free indefinitely, Power Tools now requires a subscription once the free trial period is over. I’d say that Power Tools is worth the price for heavy spreadsheet users at $29.95/year or $89.95 for a lifetime subscription.

How To Compare Columns In Google Sheets

Power Tools has many powerful functions, but we’ll just take a look at its method of column comparing here.

  1. Once Power Tools is added to your Google Sheets, go to the Add-Ons pull-down menu
    How To Compare Columns In Google Sheets
  2. Select Power Tools
    How To Compare Columns In Google Sheets
  3. Then select Start
    How To Compare Columns In Google Sheets
  4. Click the ‘Dedupe & Compare’ menu option then select ‘Compare two sheets’
    How To Compare Columns In Google Sheets
  5. Enter the ranges of the columns you want to compare. Note that you can compare multiple columns at a time, and even compare across different sheets!
    How To Compare Columns In Google Sheets
  6. Select whether you want to find unique values or duplicate values.
    How To Compare Columns In Google Sheets
  7. Select how you want Power Tools to indicate the results of the comparison. You can choose to have it color in the duplicate or unique cells, to move or copy data to new columns, and other choices.
    How To Compare Columns In Google Sheets

A quick way to compare differences between text or spreadsheets

If you don’t want the hassle of writing formulas or using an add-on and just want to quickly compare values or text between two documents, there is a free online tool that does the heavy lifting for you. It is called Diffchecker and seems to work well. It is even recommended for use on the Google Docs forum.

  1. Navigate to Diffchecker.
    How To Compare Columns In Google Sheets
  2. Paste one set of text or values into the left pane and the other column or text into the right.
    How To Compare Columns In Google Sheets
  3. Select Find Difference!
    How To Compare Columns In Google Sheets
  4. The site will compare the two panes and highlight any differences.
    How To Compare Columns In Google Sheets

Diffchecker is useful if you are trying to differentiate between columns and only need the results.

So how about if you use Excel, can you compare columns using that tool? Well of course you can!

Compare two columns in Microsoft Excel

I flip between Google Sheets and Microsoft Excel depending on what I am trying to do. While Sheets is very good, it doesn’t have quite as many features as Excel and so falls short in some key areas.

Method 1 to compare columns for duplicates in Excel:

  1. Highlight the two columns you want to check.
    How To Compare Columns In Google Sheets
  2. Select Conditional Formatting from the Home ribbon.
    How To Compare Columns In Google Sheets
  3. Select Highlight Cell Rules and Duplicate Values.
    How To Compare Columns In Google Sheets
  4. Select a format to display and select OK.
    How To Compare Columns In Google Sheets

Method 2 to compare columns for differences in Excel:

  1. Highlight cell 1 in column C.
    How To Compare Columns In Google Sheets
  2. Paste =IF(COUNTIF($A:$A,$B1)=0,"No match in A","") into the formula bar.
    How To Compare Columns In Google Sheets
  3. You should see ‘No match in A’ in column C wherever the two columns differ.
    How To Compare Columns In Google Sheets

You should see those cells with differences as there should be a label in the corresponding row telling you ‘No match in A’. You can, of course, modify this to say anything you like. You can also change the column letters or the order in which you compare the two accordingly.

Leave a Comment

Outlook Inbox Repair Tool

Outlook Inbox Repair Tool

The Outlook Inbox Repair Tool fixes corrupted PST files quickly so you can recover emails and restore normal Outlook function. Follow these exact steps to run scanpst.exe without data loss.

Adobe PDF Installer Offline

Adobe PDF Installer Offline

Get the Adobe PDF Installer Offline to install Acrobat Reader on any PC without needing internet during setup. Follow these exact steps for the full standalone package.

How to Chromecast from Laptop to TV

How to Chromecast from Laptop to TV

Learn how to Chromecast from laptop to TV with this step-by-step guide. Stream browser tabs, videos, or your full screen from Windows or Mac to your TV in minutes.

How to Edit an Adobe PDF File

How to Edit an Adobe PDF File

Learn how to edit an Adobe PDF file in Adobe Acrobat with precise steps for text, images, and layout changes. Make professional edits quickly and save time.

Free Foxit Reader Free Download

Free Foxit Reader Free Download

Get your Free Foxit Reader Free Download from the official source with this step-by-step guide that ensures a safe and quick installation for viewing PDFs.

How to Get Help in Windows 11

How to Get Help in Windows 11

Learn how to get help in Windows 11 with built-in tools like the Get Help app and Quick Assist for fast, official support without third-party downloads.

How to Retract an Outlook Email

How to Retract an Outlook Email

Learn how to retract an Outlook email in Microsoft Outlook when you need to correct a mistake before the recipient opens it. Follow these precise steps for Exchange accounts.

How to Chromecast in Samsung TV

How to Chromecast in Samsung TV

Learn how to Chromecast in Samsung TV by connecting a Chromecast device and streaming from your phone or computer in just a few minutes.

Adobe Acrobat DC Reader Free Download

Adobe Acrobat DC Reader Free Download

Get the official Adobe Acrobat DC Reader free download safely. Follow this step-by-step guide to install the latest version for viewing and editing PDFs on Windows or Mac.

How to Update to Win 11

How to Update to Win 11

How to Update to Win 11 from Windows 10 safely with this detailed guide. Check requirements, run the upgrade, and enjoy new features and better security on compatible hardware.