Excel: Compute the Percentage Change Between 2 Numbers

One of the most common thing you can do in Microsoft Excel is to compute the percentage change between 2 numbers. In this tutorial, we'll see exactly how to do that.

You can see below the data we'll work with. The plan is to fill the last column with the correct percentages and some cool formatting.

an excel table containing numbers split by 2 years

The Formula

Let's start with a tiny bit of math. How do we actually compute the change between 2 numbers? It looks like this:

change = (finalValue - initialValue) / initialValue

We can check if this works with a simple example. If we go from $100 to $150, we get: (150-100)/100 = 50/100 = +50%. So it's fine :-)

I recommend you to learn this formula by heart if that's not already the case, because it is so useful when analyzing data.

In Excel

Once you know the math, you just have to write the formula in Excel. Here's the example that you saw at the top of this tutorial.

an excel table containing numbers split by 2 years

In this case, for the first row of the table we have:

So type the formula in the correct cell, and use the fill handle to copy the formula in every row.

the formula in excel to compute the percentage change between 2 numbers

And there you have the percentage change for all our values!

Formatting

We can make things look better with a little formatting.

The simple solution is to just select the cells and set the format to percentage.

set the format of numbers to percentage in excel

It works fine, but we can do better as explained below. Note that this is completely optional.

Select the cells and right click to do "format cells". In the window that appears click on "custom" in the left menu at the very bottom.

custom cells number format in excel

And past this in the "type" field at the top: [Green]+ 0%; [Red]- 0%; 0%

You don't need to understand how this code works, but if you are curious I'll explain this in the "bonus" section below.

Then press enter, and you should see this cool looking result:

custom cells number format with colors in excel

Bonus

For those of you who want to know how [Green]+ 0%; [Red]- 0%; 0% works, here's your explanation.

The code is actually in three parts, divided by the semicolon character:

This is a really powerful way to display numbers, but it can become quite complex because it's not really intuitive to use.

Conclusion

As I said earlier, computing the percentage change between 2 numbers is something important that you should know. You just need to remember the formula to compute the change:

change = (finalValue - initialValue) / initialValue

Then it's up to you to add some nice formatting!

Other articles you might like on ExcelFrog.com