How to highlight differences in price lists
Today I am going to show you how to quickly compare two tables using Conditional Formatting (CF). I am going to compare two price lists from the year 2010 and year 2011.
I have two types of data set layouts I want to share a solution for, basic dataset layout shown above and a two-index layout.
What's on this page
To make things more authentic in my examples, products in price list 2011 are not sorted in the same way as 2010. New products are also introduced.
It is quite common that price lists are huge and a total mess. Excel is the perfect tool for finding the differences between datasets.
A requirement for these conditional formatting formulas to work, is that column and row headers have identical spelling.
The same letter capitalization is not required.
Basic dataset layout
I have two worksheets, in this example, named 2010 and 2011. They both contain a category, product, and a price column.
Color | Description |
Yellow | A new item in the list. |
Green | Price increase. |
Red | Price decrease. |
There are three different CF formulas applied to cell range D3:D14, each coloring a cell based on a condition.
Two or more CF formulas can't color cell at the same time, the logical expressions I built can't all be true at the same time.
Red Conditional Formatting formula
The red CF formula compares the value in column D based on category value and product value with the corresponding product, category and price in worksheet 2010. If the value in column D is smaller the cell is highlighted red.
The COUNTIFS function returns an array that indicates the position of the corresponding price. The following explanation is for cell D12, see picture above.
COUNTIFS($B12, 2010'!$B$3:$B$12, $C12, 2010'!$C$3:$C$12) returns {0; 0; 0; 0; 0; 0; 1; 0; 0; 0}.
The MATCH function returns the position of a given value in the array.
MATCH(1,COUNTIFS($B12, 2010'!$B$3:$B$12, $C12, 2010'!$C$3:$C$12), 0)
becomes
MATCH(1,{0; 0; 0; 0; 0; 0; 1; 0; 0; 0}, 0) and returns 7. Now we know where the value we are looking for is.
$D12<INDEX(2010'!$D$3:$D$12, MATCH(1,COUNTIFS($B12, 2010'!$B$3:$B$12, $C12, 2010'!$C$3:$C$12), 0))
becomes
$D12<INDEX(2010'!$D$3:$D$12, 7)
becomes
$441.27<$450 and returns TRUE.
Cell D12 is highlighted red.
Green Conditional Formatting formula
The green CF formula is similar to the red CF formula except that the cell is highlighted green if the value in column D is larger than the corresponding value in worksheet 2010.
The only difference between the red and green CF formulas is the larger than and smaller than sign.
Yellow Conditional Formatting formula
The yellow CF formula checks if the category and product is not found in worksheet 2010, if TRUE the cell is highlighted yellow.
Two index table
The questions I am going to answer in this article are:
- How do I find new products or models compared to previous year?
- How to identify lowered prices compared to previous year?
- How to identify higher prices compared to previous year?
Here are the two tables together on the same worksheet.
As you can see "product E" is new for 2011 (highlighted yellow), "product A" type 4 has a lower price than the previous year 2010 (highlighted red), etc.
The colors make it very easy to spot differences.
New values compared to last year
The following CF formula highlights entire row yellow if it finds a new product name.
Conditional formatting formula:
It compares the product and type columns between the tables and if a value is not found the CF formula highlights the entire row yellow.
Find lower prices
Conditional formatting formula:
Cells are formatted red if the price is lower than the price in the other table.
Find higher prices
Conditional formatting formula:
Cells are formatted green if the price is higher than the price in the other table.
How to apply conditional formatting formula
Make sure you adjust cell references to your excel sheet.
- Select cells C11:G15
- Press with left mouse button on "Home" tab
- Press with left mouse button on "Conditional Formatting" button
- Press with left mouse button on "New Rule.."
- Press with left mouse button on "Use a formula to determine which cells to format"
- Copy and paste conditional formatting formula in "Format values where this formula is TRUE" window.
- Press with left mouse button on "Format.." button
- Press with left mouse button on "Fill" tab
- Select a color for highlighted cells.
- Press with left mouse button on "Ok"
- Press with left mouse button on "Ok"
- Press with left mouse button on "Ok"
Explaining find lower prices conditional formatting formula in cell C11
You can follow along, copy the CF formula and paste it in a cell.
Go to tab "Formula" on the ribbon and then press with left mouse button on "Evaluate Formula" button.
Press with mouse on the "Evaluate" button to move to the next step in the calculations.
Step 1 - Find relative position of current row header in previous pricelist
=INDEX($C$4:$G$7, MATCH($B11, $B$4:$B$7, 0), MATCH(C$10, $C$3:$G$3, 0))<C11
The MATCH function returns the relative position of an item in an array that matches a specified value.
MATCH($B11, $B$4:$B$7, 0)
becomes
MATCH("Product A", {"Product A";"Product B";"Product C";"Product D"}, 0)
and returns 1.
Step 2 - Find relative position of current column header in previous price list
=INDEX($C$4:$G$7, MATCH($B11, $B$4:$B$7, 0), MATCH(C$10, $C$3:$G$3, 0))<C11
MATCH(C$10, $C$3:$G$3, 0)
becomes
MATCH("Model 1", {"Model 1", "Model 2", "Model 3", "Model 4", "Model 5"}, 0)
returns 1. Type 1 is found in position 1 in cell range C3:G3.
Step 3 -Â Return a value of the cell at the intersection of a particular row and column
=INDEX($C$4:$G$7, MATCH($B11, $B$4:$B$7, 0), MATCH(C$10, $C$3:$G$3, 0))<C11
becomes
=INDEX($C$4:$G$7, 1, 1)
becomes
=INDEX({27,3, 612,9, 765,6, 872,1, 417,3;266,2, 989,3, 576,7, 768,5, 948,8;213,6, 276, 140,3, 609,5, 6,5;642,8, 159,2, 848,9, 452,2, 574,1}, 1, 1)
returns 27,3. The picture above shows how the formula finds the value at the intersection of a given row and column number.
Step 4 -Â Compare returned value to current value
=INDEX($C$4:$G$7, MATCH($B11, $B$4:$B$7, 0), MATCH(C$10, $C$3:$G$3, 0))<C11
becomes
27,3>C11
becomes
27,3>27,3
returns FALSE. Cell C11 is not highlighted green.
Get Excel *.xlsx file
Recommended reading
Built-in conditional formatting
Data Bars Color scales IconsHighlight cells rule
Highlight cells containing stringHighlight a date occuring
Highlight cells equal to
Highlight unique/duplicates
Top bottom rules
Highlight top 10 valuesHighlight top 10 % values
Highlight above average values
Basic CF formulas
Working with Conditional Formatting formulasFind numbers in close proximity to a given number
Highlight empty cells
Highlight text values
Search using CF
Highlight records – multiple criteria [OR logic]Highlight records [AND logic]
Highlight records containing text strings (AND Logic)
Highlight lookup values
Unique distinct
How to highlight unique distinct valuesHighlight unique values and unique distinct values in a cell range
Highlight unique values in a filtered Excel table
Highlight unique distinct records
Duplicates
How to highlight duplicate valuesHighlight duplicates in two columns
Highlight duplicate values in a cell range
Highlight smallest duplicate number
Highlight more than once taken course in any given day
Highlight duplicates with same date, week or month
Highlight duplicate records
Highlight duplicate columns
Highlight duplicates in a filtered Excel Table
Compare
Highlight missing values between to columnsCompare two columns and highlight values in common
Compare two lists of data: Highlight common records
Compare tables: Highlight records not in both tables
How to highlight differences in price lists
Compare two columns and highlight differences
Min max
Highlight smallest duplicate numberHow to highlight MAX and MIN value based on month
Highlight closest number
Dates
Highlight dates in a date rangeHow to highlight MAX and MIN value based on month
Highlight odd/even months
Highlight overlapping date ranges using conditional formatting
Highlight records based on overlapping date ranges and a condition
Highlight date ranges overlapping selected record [VBA]
How to highlight weekends [Conditional Formatting]
How to highlight dates based on day of week
Highlight current date
Misc
Highlight every other rowDynamic formatting
How to change cell formatting using a Drop Down list
Highlight cells based on ranges
Highlight opposite numbers
Highlight cells based on coordinates
Excel categories
Leave a Reply
How to comment
How to add a formula to your comment
<code>Insert your formula here.</code>
Convert less than and larger than signs
Use html character entities instead of less than and larger than signs.
< becomes < and > becomes >
How to add VBA code to your comment
[vb 1="vbnet" language=","]
Put your VBA code here.
[/vb]
How to add a picture to your comment:
Upload picture to postimage.org or imgur
Paste image link to your comment.