Compare Two Sheets for Differences in Excel & Google Sheets

This tutorial demonstrates how to compare two sheets for differences in Excel and Google Sheets.

 

CompareSheets Vertical SideBySide

 

Compare Sheets Side by Side

You can compare two sheets in Excel side by side by opening a new window in the active file using the New Window button on the View menu. You can also use this feature to view two files at the same time.

  1. Make sure you have a file open that contains multiple worksheets and then, in the Ribbon, select View > New Window.

 

excel view2sheets newwindow

 

  1. You can switch to the new window and move to a different sheet. The (1) title bar in Excel will show that you have two windows of the same book by putting a “2” after the file name. To view the sheets side by side, click (2) View Side by Side.

 

CompareSheets ViewSideBySide

 

The default setting for View Side by Side is for one of the windows to be above the other. You can click on different sheets in the different windows.

 

CompareSheets Vertical Windows

 

  1. To view the sheets next to each other instead of one below the other, in the Ribbon, select (1) View > Arrange All, (2) select Vertical, then (3) click OK.

 

CompareSheets ArrangeAll

 

The “2” sheet will now be placed next to each other on your screen.

 

CompareSheets Vertical SideBySide

 

  1. You can now visually compare the data in the two sheets to see the differences. You can also use this method to compare two separate files for differences.

Compare Using Conditional Formatting

You can compare the values in the same cells in two separate sheets with conditional formatting.

  1. Highlight the cells in the first sheet that you wish to compare and then, in the Ribbon, select Home > Conditional Formatting.

 

CompareSheets_Ribbon ConditionalFormatting

 

  1. In the Conditional Formatting menu, select New Rule.

 

CompareSheets ConditionalFormatting NewRule

 

  1. Select (1) Use a formula to determine which cells to format. Then type in the (2) formula required. In this case:
=B6='CarSales-South'!B6

where CarSales-South is the name of the sheet you’re comparing to the active sheet.
Do not use $ signs (absolutes) around the cell addresses!
Finally, (3) click Format.

 

CompareSheets SetFormula

 

  1. Click on the (1) Fill tab, then select the (2) color to apply to cells meeting the conditional formatting criteria. (3) Click OK.

 

CompareSheets Set Format

 

  1. Click OK until you’re back to the Excel sheet. Any cells that are equal to each other in the two sheets being compared are highlighted in green.

 

CompareSheets ConditionalFormat

 

Compare With Formulas

You can get even more detailed in comparing the two sheets by creating a third sheet to use as a “report” sheet.

  1. In the Excel file where the report is required, add a new sheet (in this example, called ComparisonReport).

 

CompareSheets ComparisonReport

 

  1. In Cell A1 of the new sheet, type the following IF formula:
=IF('CarSales-North'!A1<>'CarSales-South'!A1,"Cells do not match", "Cells Match")

where CarSales-North and CarSales-South are the names of the two sheets whose data you are comparing.

  1. Copy this formula down and across to the amount or rows and columns that are populated in the original sheets.

 

CompareSheets Match

 

Compare Sheets for Differences in Google Sheets

To compare two sheets for differences in Google Sheets, you can use the formula approach as described above.

In your Google file, create a new sheet called ComparisonReport and then type the formula in cell A1 to compare the relevant sheets.

=IF('CarSales-North'!A1='CarSales-South'!A1,"Cells Match", "Cells do not match")

CompareSheets GoogleSheets